+ list_filter = [
+ "language",
+ "based_on__language",
+ ("pd_year", RangeNumericFilter),
+ "collections",
+ "collections__category",
+ "epochs", "kinds", "genres",
+ "priority",
+ "authors__gender", "authors__nationality",
+ "translators__gender", "translators__nationality",
+ "document_book__chunk__stage",
+ "document_book__chunk__user",
+
+ LicenseFilter,
+ CoverLicenseFilter,
+ ]
+ readonly_fields = ["wikidata_link", "estimated_costs", "documents_book_link"]
+ actions = [export_as_csv_action()]
+ fieldsets = [
+ (None, {"fields": [("wikidata", "wikidata_link")]}),
+ (
+ _("Identification"),
+ {
+ "fields": [
+ "title",
+ ("slug", 'documents_book_link'),
+ "authors",
+ "translators",
+ "language",
+ "based_on",
+ "pd_year",
+ ]
+ },
+ ),
+ (
+ _("Features"),
+ {
+ "fields": [
+ "epochs",
+ "genres",
+ "kinds",
+ ]
+ },
+ ),
+ (
+ _("Plan"),
+ {
+ "fields": [
+ "scans_source",
+ "text_source",
+ "priority",
+ "collections",
+ "notes",
+ ("estimated_chars", "estimated_verses", "estimate_source"),
+ "estimated_costs",
+ ]
+ },
+ ),
+ ]
+
+ def get_queryset(self, request):
+ qs = super().get_queryset(request)
+ if request.resolver_match.view_name.endswith("changelist"):
+ qs = qs.prefetch_related("authors", "translators")
+ return qs
+
+ def estimated_costs(self, obj):
+ return "\n".join(
+ "{}: {} zł".format(
+ work_type.name,
+ cost or '—'
+ )
+ for work_type, cost in obj.get_estimated_costs().items()
+ )
+
+ def smart_title(self, obj):
+ if obj.title:
+ return obj.title
+ if obj.notes:
+ n = obj.notes
+ if len(n) > 100:
+ n = n[:100] + '…'
+ return mark_safe(
+ '<em><small>' + escape(n) + '</small></em>'
+ )
+ return '---'
+ smart_title.short_description = _('Title')
+ smart_title.admin_order_field = 'title'
+
+ def documents_book_link(self, obj):
+ for book in obj.document_books.all():
+ return mark_safe('<a style="position: absolute" href="{}"><img height="100" width="70" src="/cover/preview/{}/?height=100&width=70"></a>'.format(book.get_absolute_url(), book.slug))
+ documents_book_link.short_description = _('Book')