comparison gpp/messages/admin.py @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children c7c427411f03
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 """
2 This file contains the automatic admin site definitions for the Message models.
3 """
4
5 from django.contrib import admin
6 from messages.models import Message
7 from messages.models import Options
8
9 admin.site.register(Message)
10 admin.site.register(Options)