Mercurial > public > sg101
diff gpp/potd/admin.py @ 267:ded03f2513e9
Fixing #116. Allow formatting on POTD description and enable TinyMCE in the admin.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 25 Sep 2010 18:55:21 +0000 |
parents | dbd703f7d63a |
children | 3c951521e0ec |
line wrap: on
line diff
--- a/gpp/potd/admin.py Sat Sep 25 18:04:44 2010 +0000 +++ b/gpp/potd/admin.py Sat Sep 25 18:55:21 2010 +0000 @@ -1,16 +1,21 @@ """ This file contains the admin definitions for the POTD application. """ +from django.contrib import admin +from django.conf import settings -from django.contrib import admin from potd.models import Photo from potd.models import Current from potd.models import Sequence + class PhotoAdmin(admin.ModelAdmin): exclude = ('thumb', ) raw_id_fields = ('user', ) + class Media: + js = settings.GPP_THIRD_PARTY_JS['tiny_mce'] + class CurrentAdmin(admin.ModelAdmin): raw_id_fields = ('potd', )