view messages/admin.py @ 684:161b56849114

For Django 1.5: management commands should use self.stdout, etc. for output. Note that I did not update the legacy commands since it is likely I will never run or test these commands again.
author Brian Neal <bgneal@gmail.com>
date Fri, 23 Aug 2013 19:17:40 -0500
parents ee87ea74d46b
children 4a4fa174a0ec
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)