Clean up lastfm importing

This commit is contained in:
2023-02-16 22:31:46 -05:00
parent 9568726bf3
commit bb9936af65
7 changed files with 89 additions and 31 deletions

View File

@ -24,7 +24,12 @@ class AudioScrobblerTSVImportAdmin(admin.ModelAdmin):
@admin.register(LastFmImport)
class LastFmImportAdmin(admin.ModelAdmin):
date_hierarchy = "created"
list_display = ("uuid", "created", "process_count", "processed_on")
list_display = (
"uuid",
"process_count",
"processed_finished",
"processing_started",
)
ordering = ("-created",)