annotate bns_website/reviews/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 71f2beb03789
children ced908af601a
rev   line source
ckridgway@16 1 """
ckridgway@16 2 Automatic admin definitions for the models in the reviews application.
ckridgway@16 3 """
ckridgway@16 4 from django.contrib import admin
ckridgway@16 5 from reviews.models import Review
ckridgway@16 6
ckridgway@16 7
ckridgway@16 8 class ReviewAdmin(admin.ModelAdmin):
ckridgway@16 9 list_display = ['date', 'reviewer', 'review_site', 'title']
ckridgway@16 10
ckridgway@16 11
ckridgway@16 12 admin.site.register(Review, ReviewAdmin)