Mercurial > public > sg101
diff gpp/membermap/admin.py @ 266:4532ed27bed8
Fixing #112. Rework member map to untangle user profile and avatar cache from the membermap (since it wasn't really working anyway).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 25 Sep 2010 18:04:44 +0000 |
parents | dbd703f7d63a |
children |
line wrap: on
line diff
--- a/gpp/membermap/admin.py Fri Sep 24 02:12:09 2010 +0000 +++ b/gpp/membermap/admin.py Sat Sep 25 18:04:44 2010 +0000 @@ -7,7 +7,7 @@ from membermap.models import MapEntry class MapEntryAdmin(admin.ModelAdmin): - exclude = ('json', ) + exclude = ('html', ) list_display = ('user', 'location', 'lat', 'lon', 'date_updated') list_filter = ('date_updated', ) date_hierarchy = 'date_updated'