Mercurial > public > sg101
view gpp/news/admin.py @ 184:4e1abeb593c2
Updating jQuery and jQuery UI. This is for ticket #57. Noticed GCalendar wasn't opening the datepicker on the correct date until I set a dateFormat option. Fixed member map to undisable the update button if you type in a location that can't be geocoded.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 28 Mar 2010 22:19:08 +0000 |
parents | ca66189c7c44 |
children | b4305e18d3af |
line wrap: on
line source
""" This file contains the automatic admin site definitions for the News models. """ from django.contrib import admin from django.conf import settings from news.models import PendingStory from news.models import Story from news.models import Category class PendingStoryAdmin(admin.ModelAdmin): list_display = ('title', 'date_submitted', 'submitter') list_filter = ('date_submitted', ) search_fields = ('title', 'short_text', 'long_text') date_hierarchy = 'date_submitted' class Media: js = settings.GPP_THIRD_PARTY_JS['tiny_mce'] class StoryAdmin(admin.ModelAdmin): list_display = ('title', 'date_published', 'submitter', 'category') list_filter = ('date_published', 'category') search_fields = ('title', 'short_text', 'long_text') date_hierarchy = 'date_published' class Media: js = settings.GPP_THIRD_PARTY_JS['tiny_mce'] admin.site.register(Category) admin.site.register(Story, StoryAdmin) admin.site.register(PendingStory, PendingStoryAdmin)