view gpp/mailer/admin.py @ 297:69498a43e636

Fixing #137; added a 'time-ago' timestamp to the template tags that display the latest web links and downloads.
author Brian Neal <bgneal@gmail.com>
date Sun, 09 Jan 2011 21:16:08 +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)