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/ccg_notes/admin.py | |
parent | 6a2393e6819ea09aeb559354a69746750aa8cbdf (diff) |
moved ccg notes to unused
Diffstat (limited to 'app/ccg_notes/admin.py')
-rw-r--r-- | app/ccg_notes/admin.py | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/app/ccg_notes/admin.py b/app/ccg_notes/admin.py deleted file mode 100644 index 5aec3ae..0000000 --- a/app/ccg_notes/admin.py +++ /dev/null @@ -1,32 +0,0 @@ -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) |