mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-23 23:50:21 +00:00
6 lines
122 B
Python
6 lines
122 B
Python
from django import forms
|
|
|
|
|
|
class TestForm(forms.Form):
|
|
test_data = forms.CharField(label="test data", max_length=128)
|