9 lines
154 B
Python
9 lines
154 B
Python
|
# coding: utf-8
|
||
|
from django import forms
|
||
|
|
||
|
class NewPrednaskyForm(forms.Form):
|
||
|
ucastnik = forms.CharField(label = 'Tvoje jméno', max_length = 100)
|
||
|
|
||
|
|
||
|
|