view gpp/mailer/admin.py @ 294:254db4cb6a86

Changes / scripts to import forums. Other tweaks and moving other import scripts to the legacy application.
author Brian Neal <bgneal@gmail.com>
date Wed, 05 Jan 2011 04:09:35 +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)