mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-30 13:34:00 +03:00
7 lines
232 B
Python
7 lines
232 B
Python
|
from django import forms
|
||
|
|
||
|
class MyForm(forms.Form):
|
||
|
foo = forms.BooleanField()
|
||
|
bar = forms.IntegerField(help_text='Must be an integer.')
|
||
|
baz = forms.CharField(max_length=32, help_text='Free text. Max length 32 chars.')
|