view gpp/mailer/admin.py @ 208:2022c0409296

Fix #76; use POST to get downloads to avoid having side-effects (updating hit count) on GETs.
author Brian Neal <bgneal@gmail.com>
date Wed, 05 May 2010 03:12:15 +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)