view gpp/mailer/admin.py @ 322:c3d3d7114749

Fix #148; Django now requires AJAX posts to present the CSRF token. Added code suggested by Django docs to shoutbox.js. Since shoutbox.js is on every page, it should cover all cases.
author Brian Neal <bgneal@gmail.com>
date Sat, 12 Feb 2011 21:37:17 +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)