Mercurial > public > sg101
view gpp/mailer/admin.py @ 376:6f963e5e7b03
Fixing #156; improve upon the work done in r397. Use the forum last visit record if there is no topic last visit record.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 08 Mar 2011 01:16:56 +0000 |
parents | aef00df91165 |
children |
line wrap: on
line source
"""This file contains the automatic admin site definitions for the mailer application.""" from django.contrib import admin from mailer.models import Message class MessageAdmin(admin.ModelAdmin): list_display = ('from_address', 'to_address', 'subject', 'creation_date') list_display_links = ('subject', ) admin.site.register(Message, MessageAdmin)