Mercurial > public > sg101
view gpp/membermap/admin.py @ 567:0a8e6a9ccf53
Tweaks to the contests application: show the winners on the list page.
Minor presentation changes on the detail template.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 07 Mar 2012 18:12:02 -0600 |
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)