diff options
author | luxagraf <sng@luxagraf.net> | 2016-06-17 10:21:26 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-06-17 10:21:26 -0400 |
commit | b658d4b38f1aab3ed1bdc629300392c1b3e9e8fa (patch) | |
tree | 28eefd84cd586f23f1b1e7d96c4b58c229b7e183 /app/notes/admin.py | |
parent | cec274a4b7de8e07a3d7dc29127ba18f0dd42305 (diff) |
fixed notes to be like an instagram for the web also tweaked styles for
picwide captions and added support for show camera make, model and lens
Diffstat (limited to 'app/notes/admin.py')
-rw-r--r-- | app/notes/admin.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/notes/admin.py b/app/notes/admin.py index 3e15be2..e84b7a0 100644 --- a/app/notes/admin.py +++ b/app/notes/admin.py @@ -2,11 +2,10 @@ from django.contrib import admin from django.contrib.gis.admin import OSMGeoAdmin from notes.models import Note, LuxNote -from utils.widgets import AdminImageWidget, LGEntryForm, LGEntryFormSmall, OLAdminBase +from utils.widgets import LGEntryForm, OLAdminBase class LuxNoteAdmin(OLAdminBase): - form = LGEntryFormSmall prepopulated_fields = {"slug": ('title',)} list_display = ('slug', 'pub_date', 'location') fieldsets = ( |