Mercurial > public > sg101
view gpp/mailer/admin.py @ 231:a2d388ed106e
Guard against the request object not having a user attribute in my Who's online middleware. This can happen if a redirect is issued before the authentication middleware gets to run.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 14 Jul 2010 02:35:39 +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)