Mercurial > public > bravenewsurf
annotate bns_website/reviews/admin.py @ 68:1d50a0db4f21
- I moved the jplayer files to a jplayer dir under static/js. I thought about moving the flash file to another dir, but thought it'd be best to leave it with the rest of the jplayer files.
- I removed some rogue colons in the music.html template.
author | Bob Mourlam <bob.mourlam@gmail.com> |
---|---|
date | Wed, 23 Nov 2011 09:16:47 -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) |