Mercurial > public > sg101
diff gpp/membermap/forms.py @ 312:88b2b9cb8c1f
Fixing #142; cut over to the django.contrib.staticfiles app.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 27 Jan 2011 02:56:10 +0000 |
parents | c515b7401078 |
children |
line wrap: on
line diff
--- a/gpp/membermap/forms.py Thu Jan 20 04:40:14 2011 +0000 +++ b/gpp/membermap/forms.py Thu Jan 27 02:56:10 2011 +0000 @@ -8,9 +8,9 @@ class MapEntryForm(forms.ModelForm): - location = forms.CharField(required=True, + location = forms.CharField(required=True, widget=forms.TextInput(attrs={'size': 64, 'maxlength': 255})) - message = forms.CharField(required=False, + message = forms.CharField(required=False, widget=forms.Textarea(attrs={'class': 'markItUp smileyTarget'})) class Meta: