Mercurial > public > sg101
view gpp/mailer/admin.py @ 498:b137a0966e4b
Removed the warning about AT&T and sbcglobal on the registration page. Added "text" classes to the registration text widgets.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 24 Nov 2011 21:27:07 +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)