view bns_website/reviews/admin.py @ 79:548b9e61bd64

Updated bands.json to include "asset_prefix" tags for all the bands. Incorporated all the small images from Ferenc into the bands slideshow. Went through and crushed all the large images to fit within 800x600. Make sure to "manage.py loaddata bands.json" after picking this up.
author Chris Ridgway <ckridgway@gmail.com>
date Fri, 25 Nov 2011 16:54:59 -0600
parents 37d9b6b1a097
children
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_filter = ['date']
    search_fields = ['title', 'review', 'reviewer', 'review_site']
    list_display = ['date', 'reviewer', 'review_site', 'title']
    ordering = ['-date']

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

admin.site.register(Review, ReviewAdmin)