annotate gpp/membermap/admin.py @ 481:9f888dbe61ce

Fixing #230; add a scrollbar to the PM popup dialog if necessary. This wasn't as easy as I thought. Had to wrap the PM text in a div with its styling (max-height and overflow). If I then resized the dialog, I'd get two scrollbars. So for now, made the dialog non-resizable.
author Brian Neal <bgneal@gmail.com>
date Fri, 07 Oct 2011 02:11:33 +0000
parents 4532ed27bed8
children
rev   line source
gremmie@1 1 """
gremmie@1 2 Admin definitions for the member map application models.
gremmie@1 3 """
gremmie@1 4
gremmie@1 5 from django.contrib import admin
gremmie@1 6
gremmie@1 7 from membermap.models import MapEntry
gremmie@1 8
gremmie@1 9 class MapEntryAdmin(admin.ModelAdmin):
bgneal@266 10 exclude = ('html', )
gremmie@1 11 list_display = ('user', 'location', 'lat', 'lon', 'date_updated')
gremmie@1 12 list_filter = ('date_updated', )
gremmie@1 13 date_hierarchy = 'date_updated'
gremmie@1 14 ordering = ('-date_updated', )
gremmie@1 15 search_fields = ('user', 'location', 'message')
gremmie@1 16 raw_id_fields = ('user', )
gremmie@1 17
gremmie@1 18 admin.site.register(MapEntry, MapEntryAdmin)