"status",
"gender",
"nationality",
+ "place_of_birth",
+ "place_of_death",
+ ("genitive", admin.EmptyFieldListFilter)
]
list_per_page = 10000000
search_fields = ["first_name", "last_name", "wikidata"]
- readonly_fields = ["wikidata_link"]
+ readonly_fields = ["wikidata_link", "description_preview"]
fieldsets = [
(None, {"fields": [("wikidata", "wikidata_link")]}),
"fields": [
("first_name", "last_name"),
"slug",
+ "genitive",
"gender",
"nationality",
("date_of_birth", "year_of_birth", "year_of_birth_inexact", "year_of_birth_range", "place_of_birth"),
("date_of_death", "year_of_death", "year_of_death_inexact", "year_of_death_range", "place_of_death"),
- "description",
+ ("description", "description_preview"),
"status",
"collections",
"priority",
"notes",
"gazeta_link",
"culturepl_link",
+ "plwiki",
+ "photo", "photo_source", "photo_attribution",
]
},
),
NotableBookInline,
]
+ def description_preview(self, obj):
+ return obj.generate_description()
+
admin.site.register(models.Author, AuthorAdmin)
"priority",
"authors__gender", "authors__nationality",
"translators__gender", "translators__nationality",
+
+ ("authors__place_of_birth", add_title(admin.RelatedFieldListFilter, ' autora')),
+ ("authors__place_of_death", add_title(admin.RelatedFieldListFilter, ' autora')),
+ ("translators__place_of_birth", add_title(admin.RelatedFieldListFilter, ' tłumacza')),
+ ("translators__place_of_death", add_title(admin.RelatedFieldListFilter, ' tłumacza')),
+
"document_book__chunk__stage",
LicenseFilter,
"wikidata",
"slug",
"title",
- "authors_str", # authors?
- "translators_str", # translators?
+ "authors_first_names",
+ "authors_last_names",
+ "translators_first_names",
+ "translators_last_names",
"language",
"based_on",
"scans_source",
"translators",
"language",
"based_on",
+ "original_year",
"pd_year",
]
},
autocomplete_fields = []
prepopulated_fields = {"slug": ("name",)}
search_fields = ["name"]
- fields = ['name', 'slug', 'category', 'notes', 'estimated_costs']
+ fields = ['name', 'slug', 'category', 'description', 'notes', 'estimated_costs']
readonly_fields = ['estimated_costs']
inlines = [AuthorInline, BookInline]
class CategoryAdmin(admin.ModelAdmin):
search_fields = ["name"]
-admin.site.register(models.Epoch, CategoryAdmin)
-admin.site.register(models.Genre, CategoryAdmin)
-admin.site.register(models.Kind, CategoryAdmin)
+
+@admin.register(models.Epoch)
+class EpochAdmin(CategoryAdmin):
+ list_display = ['name', 'adjective_feminine_singular', 'adjective_nonmasculine_plural']
+
+
+@admin.register(models.Genre)
+class GenreAdmin(CategoryAdmin):
+ list_display = ['name', 'plural', 'is_epoch_specific']
+
+
+@admin.register(models.Kind)
+class KindAdmin(CategoryAdmin):
+ list_display = ['name', 'collective_noun']