Mercurial > public > sg101
view gpp/messages/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 | 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)