Mercurial > public > sg101
view gpp/membermap/admin.py @ 140:91a01b8b5885
Comments: in order to show a green board concept while looking at the comments in the admin, added a 'not removed' boolean function.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 30 Nov 2009 03:20:24 +0000 |
parents | dbd703f7d63a |
children | 4532ed27bed8 |
line wrap: on
line source
""" Admin definitions for the member map application models. """ from django.contrib import admin from membermap.models import MapEntry class MapEntryAdmin(admin.ModelAdmin): exclude = ('json', ) list_display = ('user', 'location', 'lat', 'lon', 'date_updated') list_filter = ('date_updated', ) date_hierarchy = 'date_updated' ordering = ('-date_updated', ) search_fields = ('user', 'location', 'message') raw_id_fields = ('user', ) admin.site.register(MapEntry, MapEntryAdmin)