view bns_website/news/admin.py @ 27:a5e8741452a3

Add path to Django in WSGI file. Use Django's simplesjon module as it will either import the Python system one if it exists, or use the one provided with Django as a fallback. This is needed for the production server, which is running Python 2.5.
author Brian Neal <bgneal@gmail.com>
date Tue, 01 Nov 2011 20:15:21 -0500
parents 6cb0d49187ae
children ced908af601a
line wrap: on
line source
"""
Automatic admin definitions for the models in the bands application.

"""
from django.contrib import admin
from news.models import News

class NewsAdmin(admin.ModelAdmin):
    list_filter = ['date']
    search_fields = ['title', 'content']

admin.site.register(News, NewsAdmin)