view 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
line wrap: on
line source
"""
Forms for the member map application.
"""
from django import forms
from django.conf import settings

from membermap.models import MapEntry


class MapEntryForm(forms.ModelForm):

    class Meta:
        model = MapEntry
        fields = ('location', 'message')

    class Media:
        css = {
            'all': settings.GPP_THIRD_PARTY_CSS['markitup']
        }
        js = settings.GPP_THIRD_PARTY_JS['markitup']

# vim: ts=4 sw=4