Изменил поле file в модели Track
This commit is contained in:
@@ -14,9 +14,9 @@ class TrackAdmin(admin.ModelAdmin):
|
||||
js = ("admin/js/upload_progress.js",)
|
||||
css = {"all": ("admin/css/upload_progress.css",)}
|
||||
|
||||
list_display = ("album__artist__name", "title", "created_by", "created_at")
|
||||
list_display = ("album__artist__name", "album__name", "title", "created_by", "created_at")
|
||||
search_fields = ("title", "album__artist__name", "album__name")
|
||||
list_filter = ("album__artist__name",)
|
||||
list_filter = ("album__artist__name", "album__name", "created_at")
|
||||
|
||||
|
||||
class TrackInline(admin.TabularInline):
|
||||
|
||||
Reference in New Issue
Block a user