view gpp/messages/admin.py @ 327:a1bf6cf49720

Modified the implementation of the avatar tag to look for an attribute 'user_profile' on the user object. If present, this is assumed to be the profile. This improves the performance of the member list and some forum views.
author Brian Neal <bgneal@gmail.com>
date Tue, 22 Feb 2011 02:11:26 +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)