view bns_website/reviews/admin.py @ 33:b5329e6ad828

Added a fabric file to automate some tasks on the production server.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Nov 2011 13:00:47 -0500
parents ced908af601a
children 37d9b6b1a097
line wrap: on
line source
"""
Automatic admin definitions for the models in the reviews application.
"""
from django.contrib import admin
from django.conf import settings

from reviews.models import Review


class ReviewAdmin(admin.ModelAdmin):
    list_display = ['date', 'reviewer', 'review_site', 'title']

    class Media:
        js = settings.THIRD_PARTY_JS['tiny_mce']

admin.site.register(Review, ReviewAdmin)