view gpp/messages/admin.py @ 505:a5d11471d031

Refactor the logic in the rate limiter decorator. Check to see if the request was ajax, as the ajax view always returns 200. Have to decode the JSON response to see if an error occurred or not.
author Brian Neal <bgneal@gmail.com>
date Sat, 03 Dec 2011 19:13:38 +0000
parents c7c427411f03
children
line wrap: on
line source
"""
This file contains the automatic admin site definitions for the Message models.
"""
from django.contrib import admin

from messages.models import Message
from messages.models import Options


class MessageAdmin(admin.ModelAdmin):
    list_display = ('sender', 'receiver', 'send_date', 'subject')
    raw_id_fields = ('sender', 'receiver')
    exclude = ('html', )
    date_hierarchy = 'send_date'
    list_display_links = ('subject', )

admin.site.register(Message, MessageAdmin)
admin.site.register(Options)