view gpp/mailer/admin.py @ 522:82b97697312e

Created Celery tasks to process new posts and topics. Keep the updated topic set in Redis. This is for tickets #194, #237, #239.
author Brian Neal <bgneal@gmail.com>
date Sun, 18 Dec 2011 23:46:52 +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)