diff gpp/bulletins/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 ca66189c7c44
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/bulletins/admin.py	Mon Apr 06 02:43:12 2009 +0000
@@ -0,0 +1,18 @@
+'''
+This file contains the automatic admin site definitions for the Bulletins models.
+'''
+
+from django.contrib import admin
+from bulletins.models import Bulletin
+
+class BulletinAdmin(admin.ModelAdmin):
+   list_display = ('title', 'start_date', 'end_date', 'is_enabled')
+   list_filter = ('start_date', 'end_date', 'is_enabled')
+   search_fields = ('title', 'text')
+   date_hierarchy = 'start_date'
+
+   class Media:
+      js = ('js/tiny_mce/tiny_mce.js', 'js/tiny_mce_init_admin.js')
+
+
+admin.site.register(Bulletin, BulletinAdmin)