show the filename in the admin.

This commit is contained in:
Jonas Winkler 2020-11-11 15:58:29 +01:00
parent 312b0034bd
commit ee69429898

View File

@ -32,7 +32,7 @@ class TagAdmin(admin.ModelAdmin):
list_filter = ("colour", "matching_algorithm")
list_editable = ("colour", "match", "matching_algorithm")
readonly_fields = ("slug",)
readonly_fields = ("slug", )
class DocumentTypeAdmin(admin.ModelAdmin):
@ -51,9 +51,9 @@ class DocumentTypeAdmin(admin.ModelAdmin):
class DocumentAdmin(admin.ModelAdmin):
search_fields = ("correspondent__name", "title", "content", "tags__name")
readonly_fields = ("added", "file_type", "storage_type",)
readonly_fields = ("added", "file_type", "storage_type", "filename")
list_display = ("title", "created", "added", "correspondent",
"tags_", "archive_serial_number", "document_type")
"tags_", "archive_serial_number", "document_type", "filename")
list_filter = (
"document_type",
"tags",