annotate gpp/membermap/forms.py @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +0000
parents c515b7401078
children 88b2b9cb8c1f
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):
bgneal@133 11 location = forms.CharField(required=True,
bgneal@133 12 widget=forms.TextInput(attrs={'size': 64, 'maxlength': 255}))
bgneal@133 13 message = forms.CharField(required=False,
bgneal@133 14 widget=forms.Textarea(attrs={'class': 'markItUp smileyTarget'}))
gremmie@1 15
gremmie@1 16 class Meta:
gremmie@1 17 model = MapEntry
gremmie@1 18 fields = ('location', 'message')
gremmie@1 19
gremmie@1 20 class Media:
gremmie@1 21 css = {
bgneal@133 22 'all': (settings.GPP_THIRD_PARTY_CSS['markitup'] +
bgneal@133 23 settings.GPP_THIRD_PARTY_CSS['jquery-ui'])
gremmie@1 24 }
bgneal@133 25 js = (settings.GPP_THIRD_PARTY_JS['markitup'] +
bgneal@133 26 settings.GPP_THIRD_PARTY_JS['jquery-ui'])
gremmie@1 27