Mercurial > public > sg101
view gpp/mailer/admin.py @ 509:248dd8dd67f8
For #237, use Redis as the source of posts for the RSS feeds to hopefully eliminate some slow queries.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 07 Dec 2011 01:08:54 +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)