]> wagnertech.de Git - SVBaL.git/blob - python/eh_util/ausweis/forms.py
pydev-s6git
[SVBaL.git] / python / eh_util / ausweis / forms.py
1 from django import forms
2
3 class UploadFileForm(forms.Form):
4     file1 = forms.FileField(label='S-Verein-Export')
5     
6 class DocumentForm(forms.Form):
7     docfile = forms.FileField(
8         label='Select a file',
9         help_text='max. 42 megabytes'
10     )
11
12 class TextInputForm(forms.Form):
13     text = forms.CharField(
14         label = "Text für das Anschreiben",
15         empty_value = "Bitte Text eingeben ...",
16         widget=forms.Textarea,
17     )