X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/dea27f4e683e78d64d7841489ac1059e6a7d98c9..3ecd7222f0493c2bdb4de0fdb7dc02f4b4767457:/apps/catalogue/admin.py diff --git a/apps/catalogue/admin.py b/apps/catalogue/admin.py index 564e812cd..9935fce07 100644 --- a/apps/catalogue/admin.py +++ b/apps/catalogue/admin.py @@ -21,7 +21,7 @@ class TagAdmin(admin.ModelAdmin): class BookAdmin(TaggableModelAdmin): tag_model = Tag - list_display = ('title', 'slug', 'has_pdf_file', 'has_epub_file', 'has_html_file', 'has_description',) + list_display = ('title', 'slug', 'created_at', 'has_pdf_file', 'has_epub_file', 'has_html_file', 'has_description',) search_fields = ('title',) ordering = ('title',) @@ -38,8 +38,8 @@ class FragmentAdmin(TaggableModelAdmin): class MediaAdmin(admin.ModelAdmin): #tag_model = BookMedia - list_display = ('type', 'name') - ordering = ('type', 'name') + list_display = ('name', 'type', 'uploaded_at') + ordering = ('name', 'type')