Mercurial > public > sg101
view messages/admin.py @ 695:2d35e5f97a99
In process work for #50. Started a user_photos application.
Initial commit with model, form, and view. The view doesn't save the photo yet.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 07 Sep 2013 20:50:46 -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)