view messages/admin.py @ 794:f416f5db3d91

Improve accounts registration question 7 error message. One potential user thought it was referring to the combo box above it on the form, not the checkboxes.
author Brian Neal <bgneal@gmail.com>
date Tue, 27 May 2014 15:06:38 -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)