Mercurial > public > sg101
view gpp/messages/admin.py @ 375:fe1896e14c11
Fixing #184; fix typo in date template filter string that is causing the wrong date to be displayed on the max users online statistic.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 08 Mar 2011 00:50:33 +0000 |
parents | c7c427411f03 |
children |
line wrap: on
line source
""" This file contains the automatic admin site definitions for the Message models. """ from django.contrib import admin from messages.models import Message from messages.models import Options class MessageAdmin(admin.ModelAdmin): list_display = ('sender', 'receiver', 'send_date', 'subject') raw_id_fields = ('sender', 'receiver') exclude = ('html', ) date_hierarchy = 'send_date' list_display_links = ('subject', ) admin.site.register(Message, MessageAdmin) admin.site.register(Options)