summaryrefslogtreecommitdiff
path: root/app/unused_apps/ccg_notes/admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/unused_apps/ccg_notes/admin.py')
-rw-r--r--app/unused_apps/ccg_notes/admin.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/unused_apps/ccg_notes/admin.py b/app/unused_apps/ccg_notes/admin.py
new file mode 100644
index 0000000..5aec3ae
--- /dev/null
+++ b/app/unused_apps/ccg_notes/admin.py
@@ -0,0 +1,32 @@
+from django.contrib import admin
+
+from utils.widgets import OLAdminBase
+from utils.widgets import TagListFilter
+
+from .models import CcgNote
+from .forms import CcgNoteForm
+
+class CcgNoteAdmin(OLAdminBase):
+ form = CcgNoteForm
+ prepopulated_fields = {"slug": ('title',)}
+ list_display = ('slug', 'pub_date',)
+ list_filter = ['status', TagListFilter]
+ fieldsets = (
+ ('Note', {
+ 'fields': (
+ ('title', 'slug'),
+ 'body_markdown',
+ 'tags',
+ ('pub_date', 'status'),
+ ),
+ 'classes': (
+ 'show',
+ 'extrapretty',
+ 'wide'
+ )
+ }
+ ),
+ )
+
+
+admin.site.register(CcgNote, CcgNoteAdmin)