mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-24 08:00:22 +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)
|