Mercurial > public > sg101
view gpp/messages/admin.py @ 490:f0f3966ea44f
For #233, switched to asynchronous loading of the social media sharing javascript. Also switched to Facebook's javascript SDK instead of using an iframe for the like/share button.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 20 Oct 2011 00:36:37 +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)