fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
New covers.
[redakcja.git]
/
src
/
catalogue
/
admin.py
diff --git
a/src/catalogue/admin.py
b/src/catalogue/admin.py
index
68a362b
..
2759f9a
100644
(file)
--- a/
src/catalogue/admin.py
+++ b/
src/catalogue/admin.py
@@
-62,8
+62,22
@@
class AuthorAdmin(WikidataAdminMixin, TabbedTranslationAdmin):
"genitive",
"gender",
"nationality",
"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"),
+ (
+ "date_of_birth",
+ "year_of_birth",
+ "year_of_birth_inexact",
+ "year_of_birth_range",
+ "century_of_birth",
+ "place_of_birth"
+ ),
+ (
+ "date_of_death",
+ "year_of_death",
+ "year_of_death_inexact",
+ "year_of_death_range",
+ "century_of_death",
+ "place_of_death"
+ ),
("description", "description_preview"),
"status",
"collections",
("description", "description_preview"),
"status",
"collections",
@@
-273,6
+287,7
@@
class BookAdmin(WikidataAdminMixin, NumericFilterModelAdmin):
"estimate_source",
"document_book__project",
"estimate_source",
"document_book__project",
+ "audience",
"first_publication_year",
"monthly_views_page",
"first_publication_year",
"monthly_views_page",
@@
-473,3
+488,10
@@
admin.site.register(models.WorkType, WorkTypeAdmin)
@admin.register(models.Place)
class PlaceAdmin(WikidataAdminMixin, TabbedTranslationAdmin):
search_fields = ['name']
@admin.register(models.Place)
class PlaceAdmin(WikidataAdminMixin, TabbedTranslationAdmin):
search_fields = ['name']
+
+
+@admin.register(models.Thema)
+class ThemaAdmin(admin.ModelAdmin):
+ list_display = ['code', 'name', 'usable', 'hidden']
+ list_filter = ['usable', 'hidden']
+ search_fields = ['code', 'name', 'description']