Mercurial > public > sg101
view gpp/news/admin.py @ 197:2baadae33f2e
Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 10 Apr 2010 04:32:24 +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)