annotate gpp/membermap/forms.py @ 6:b6263ac72052

Use DRY principle to manage third party javascript libraries. Created script_tags template tags to generate the correct link and script tags for 3rd party libraries. The settings.py file is the only place where the full path name is specified.
author Brian Neal <bgneal@gmail.com>
date Sat, 11 Apr 2009 22:50:56 +0000
parents dbd703f7d63a
children c515b7401078
rev   line source
gremmie@1 1 """
gremmie@1 2 Forms for the member map application.
gremmie@1 3 """
gremmie@1 4 from django import forms
bgneal@6 5 from django.conf import settings
bgneal@6 6
gremmie@1 7 from membermap.models import MapEntry
gremmie@1 8
gremmie@1 9
gremmie@1 10 class MapEntryForm(forms.ModelForm):
gremmie@1 11
gremmie@1 12 class Meta:
gremmie@1 13 model = MapEntry
gremmie@1 14 fields = ('location', 'message')
gremmie@1 15
gremmie@1 16 class Media:
gremmie@1 17 css = {
bgneal@6 18 'all': settings.GPP_THIRD_PARTY_CSS['markitup']
gremmie@1 19 }
bgneal@6 20 js = settings.GPP_THIRD_PARTY_JS['markitup']
gremmie@1 21
gremmie@1 22 # vim: ts=4 sw=4