diff --git a/src/documents/admin.py b/src/documents/admin.py index ca0017f59..cc7c27524 100755 --- a/src/documents/admin.py +++ b/src/documents/admin.py @@ -142,7 +142,7 @@ class DocumentAdmin(CommonAdmin): search_fields = ("correspondent__name", "title", "content", "tags__name") readonly_fields = ("added",) list_display = ("title", "created", "added", "thumbnail", "correspondent", - "tags_") + "tags_", "archive_serial_number") list_filter = ("tags", "correspondent", FinancialYearFilter, MonthListFilter) diff --git a/src/documents/templates/admin/documents/document/change_list_results.html b/src/documents/templates/admin/documents/document/change_list_results.html old mode 100644 new mode 100755 index b33cd2927..d295ce601 --- a/src/documents/templates/admin/documents/document/change_list_results.html +++ b/src/documents/templates/admin/documents/document/change_list_results.html @@ -25,6 +25,7 @@ border-radius: 2%; overflow: hidden; height: 300px; + position: relative; } .result .header { padding: 5px; @@ -79,6 +80,15 @@ .result .image img { width: 100%; } + .result .footer { + position: absolute; + bottom: 0; + right: 0; + border-left: 1px solid #cccccc; + border-top: 1px solid #cccccc; + padding: 4px 10px 4px 10px; + background: white; + } .grid { margin-right: 260px; @@ -152,7 +162,8 @@ {# 4: Image #} {# 5: Correspondent #} {# 6: Tags #} - {# 7: Document edit url #} + {# 7: Archive serial number #} + {# 8: Document edit url #}
@@ -166,7 +177,7 @@ selection would not be possible with mouse click + drag. Instead, the underlying link would be dragged. {% endcomment %} - +
{{ result.0 }}
{{ result.5 }} @@ -178,6 +189,9 @@
{{ result.2 }}
{{ result.4 }}
+ {# Only show the archive serial number if it is set on the document. #} + {# checking for >-< (i.e., will a dash be displayed) doesn't feel like a very good solution to me. #} + {% if '>-<' not in result.7 %}{% endif %}
{% endfor %}