view gpp/messages/admin.py @ 253:5cf64ca9d9f5

#102; fix bug where the new posts on the home page were showing topic author instead of last post author.
author Brian Neal <bgneal@gmail.com>
date Mon, 20 Sep 2010 03:27:37 +0000
parents dbd703f7d63a
children c7c427411f03
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

admin.site.register(Message)
admin.site.register(Options)