Mercurial > public > sg101
view gpp/news/admin.py @ 97:96eec1ed0fd3
Render the forum page navigation in the view with render_to_string() to avoid doing it twice in the template code. Also undo a mistake in the last commit. Need 2 different orderings for Post objects: by creation date in normal views, and by reverse creation date in the admin.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 13 Sep 2009 19:58:31 +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)