aboutsummaryrefslogtreecommitdiffstats
path: root/examples/resourceexample/forms.py
blob: aa6e7685ac8a6adba35d24b454927275aa8131bd (plain)
1
2
3
4
5
6
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.')