Mercurial > public > sg101
view gpp/membermap/admin.py @ 297:69498a43e636
Fixing #137; added a 'time-ago' timestamp to the template tags that display the latest web links and downloads.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 09 Jan 2011 21:16:08 +0000 |
parents | 4532ed27bed8 |
children |
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 = ('html', ) 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)