Change address placeholder.
[wolnelektury.git] / src / catalogue / admin.py
index 88377e7..997dd5e 100644 (file)
@@ -30,6 +30,7 @@ class BookAdmin(admin.ModelAdmin):
     list_display = (
         'title', 'slug', 'created_at', 'has_epub_file', 'has_html_file', 'has_description',
     )
+    list_filter = ['print_on_demand']
     search_fields = ('title',)
     ordering = ('title',)
 
@@ -42,6 +43,7 @@ class FragmentAdmin(admin.ModelAdmin):
 
 
 class CollectionAdmin(admin.ModelAdmin):
+    list_display = ('title', 'listed')
     prepopulated_fields = {'slug': ('title',)}