Fix scrobbing pages

This commit is contained in:
2023-03-27 01:31:05 -04:00
parent d19838a26f
commit ee01ffa4ad
3 changed files with 7 additions and 4 deletions

View File

@ -22,6 +22,7 @@ class AuthorAdmin(admin.ModelAdmin):
class PageAdmin(admin.ModelAdmin):
date_hierarchy = "created"
list_filter = ("book",)
ordering = ("book", "number")
@admin.register(Book)