Mercurial > public > bravenewsurf
annotate bns_website/reviews/admin.py @ 31:9b62e4eef794
Now that we have HTML as review content, must avoid styling <ul> & <li> in review content.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 04 Nov 2011 20:08:45 -0500 |
parents | ced908af601a |
children | 37d9b6b1a097 |
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@16 | 11 list_display = ['date', 'reviewer', 'review_site', 'title'] |
ckridgway@16 | 12 |
bgneal@29 | 13 class Media: |
bgneal@29 | 14 js = settings.THIRD_PARTY_JS['tiny_mce'] |
ckridgway@16 | 15 |
ckridgway@16 | 16 admin.site.register(Review, ReviewAdmin) |