diff options
author | luxagraf <sng@luxagraf.net> | 2018-07-08 09:36:58 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-07-08 09:36:58 -0400 |
commit | a34140c05956d5dfc6ef38d264bdcd7e32d4e22d (patch) | |
tree | 7fc5a8e4cddd498bc9b967bd8d397f1cceaa68d1 /app/unused_apps/ccg_notes/admin.py | |
parent | 6a2393e6819ea09aeb559354a69746750aa8cbdf (diff) |
moved ccg notes to unused
Diffstat (limited to 'app/unused_apps/ccg_notes/admin.py')
-rw-r--r-- | app/unused_apps/ccg_notes/admin.py | 32 |
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) |