view gpp/membermap/forms.py @ 564:e5d3552d4ad0

The ajax login didn't work from the register page. I think this is because there are two input boxes with the same ID in this situation. Renamed the ajax login form's ID's to make them unique.
author Brian Neal <bgneal@gmail.com>
date Mon, 13 Feb 2012 19:34:29 -0600
parents 88b2b9cb8c1f
children
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):
    location = forms.CharField(required=True,
            widget=forms.TextInput(attrs={'size': 64, 'maxlength': 255}))
    message = forms.CharField(required=False,
            widget=forms.Textarea(attrs={'class': 'markItUp smileyTarget'}))

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

    class Media:
        css = {
            'all': (settings.GPP_THIRD_PARTY_CSS['markitup'] +
                    settings.GPP_THIRD_PARTY_CSS['jquery-ui'])
        }
        js = (settings.GPP_THIRD_PARTY_JS['markitup'] +
              settings.GPP_THIRD_PARTY_JS['jquery-ui'])