diff options
author | luxagraf <sng@luxagraf.net> | 2018-08-29 08:00:38 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-08-29 08:00:38 -0600 |
commit | c1eac77bca29c0f366f18dba9573f19f28e48062 (patch) | |
tree | d10ccd3db1e2a64632811dab8f8d237261d36be6 /app/photos | |
parent | cbe12ecc3fa422b30b43a350b597387c47264abd (diff) |
got rid of title in photo admin since I never use it.
Diffstat (limited to 'app/photos')
-rw-r--r-- | app/photos/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/photos/admin.py b/app/photos/admin.py index d2c86d8..d740df6 100644 --- a/app/photos/admin.py +++ b/app/photos/admin.py @@ -43,7 +43,7 @@ class LuxImageAdmin(OSMGeoAdmin): fieldsets = ( (None, { - 'fields': (('image', 'pub_date'), 'sizes', ('title', 'alt'), 'caption', 'point', ('is_public'), ('photo_credit_source', 'photo_credit_url')) + 'fields': (('image'), 'pub_date', 'sizes', 'alt', 'caption', 'point', ('is_public'), ('photo_credit_source', 'photo_credit_url')) }), ('Exif Data', { 'classes': ('collapse',), |