annotate bns_website/reviews/admin.py @ 51:6c7467599fa9

I added the jquery plugin jplayer to use for playing samples of the album. For now I just used some of the songs linked to by the jplayer demo, but I also picked a couple songs at random from my iTunes library. Rather than add them to the repository I just named them 1.mp3, 1.m4a, 1.ogg and 2.mp3, 2.m4a, 2.ogg and anybody that wants to test the player will have to add some random songs themselves. I only added the "blue monday" player skin because I personally think it looks the best of the examples they supply, but we could change that or roll our own if needed.
author Bob Mourlam <bob.mourlam@gmail.com>
date Sun, 13 Nov 2011 17:01:36 -0600
parents 37d9b6b1a097
children
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
bgneal@29 5 from django.conf import settings
bgneal@29 6
ckridgway@16 7 from reviews.models import Review
ckridgway@16 8
ckridgway@16 9
ckridgway@16 10 class ReviewAdmin(admin.ModelAdmin):
ckridgway@34 11 list_filter = ['date']
ckridgway@34 12 search_fields = ['title', 'review', 'reviewer', 'review_site']
ckridgway@16 13 list_display = ['date', 'reviewer', 'review_site', 'title']
ckridgway@34 14 ordering = ['-date']
ckridgway@16 15
bgneal@29 16 class Media:
bgneal@29 17 js = settings.THIRD_PARTY_JS['tiny_mce']
ckridgway@16 18
ckridgway@16 19 admin.site.register(Review, ReviewAdmin)