aboutsummaryrefslogtreecommitdiffstats
path: root/examples/resourceexample/forms.py
blob: d21d601aa94c2526c1028eb3ca550373ebca703b (plain)
1
2
3
4
5
6
7
from django import forms


class MyForm(forms.Form):
    foo = forms.BooleanField(required=False)
    bar = forms.IntegerField(help_text='Must be an integer.')
    baz = forms.CharField(max_length=32, help_text='Free text.  Max length 32 chars.')