Mercurial > public > sg101
diff gpp/news/forms.py @ 7:ca66189c7c44
Added tiny_mce to the GPP_THIRD_PARTY_JS setting. Updated code to use it.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 12 Apr 2009 00:31:36 +0000 |
parents | dbd703f7d63a |
children | 6dbb8faef085 |
line wrap: on
line diff
--- a/gpp/news/forms.py Sat Apr 11 22:50:56 2009 +0000 +++ b/gpp/news/forms.py Sun Apr 12 00:31:36 2009 +0000 @@ -3,6 +3,8 @@ """ from django import forms +from django.conf import settings + from news.models import PendingStory from news.models import Category @@ -18,7 +20,7 @@ exclude = ('submitter', 'date_submitted', 'allow_comments', 'approved', 'tags') class Media: - js = ('js/tiny_mce/tiny_mce.js', 'js/tiny_mce_init_std.js') + js = settings.GPP_THIRD_PARTY_JS['tiny_mce'] class SearchNewsForm(forms.Form): @@ -50,4 +52,3 @@ def name(self): return self.cleaned_data['friend_name'] -