fix
[redakcja.git] / src / catalogue / admin.py
index 1bb7f83..8ce330c 100644 (file)
@@ -44,16 +44,18 @@ class BookAdmin(WikidataAdminMixin, NumericFilterModelAdmin):
     autocomplete_fields = ["authors", "translators", "based_on", "collections", "epochs", "genres", "kinds"]
     prepopulated_fields = {"slug": ("title",)}
     list_filter = [
-            "language",
-            "based_on__language",
-            ("pd_year", RangeNumericFilter),
-            "collections",
-            "collections__category",
-            "epochs", "kinds", "genres",
-            "priority",
-            "authors__gender", "authors__nationality",
-            "translators__gender", "translators__nationality",
-        ]
+        "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",
+    ]
     readonly_fields = ["wikidata_link", "estimated_costs"]
     actions = [export_as_csv_action()]
     fieldsets = [
@@ -135,7 +137,7 @@ class CollectionAdmin(admin.ModelAdmin):
     autocomplete_fields = []
     prepopulated_fields = {"slug": ("name",)}
     search_fields = ["name"]
-    fields = ['name', 'slug', 'category', 'estimated_costs']
+    fields = ['name', 'slug', 'category', 'notes', 'estimated_costs']
     readonly_fields = ['estimated_costs']
     inlines = [AuthorInline, BookInline]