7 lines
135 B
Python
7 lines
135 B
Python
from django import forms
|
|
|
|
class NewPrednaskyForm(forms.Form):
|
|
ucastnik = forms.CharField(label = 'Tvoje jméno', max_length = 100)
|
|
|
|
|
|
|