]> wagnertech.de Git - SVBaL.git/blob - python/eh_util/eh_abgleich/forms.py
posaune
[SVBaL.git] / python / eh_util / eh_abgleich / forms.py
1 from django import forms
2
3 class UploadFileForm(forms.Form):
4     file1 = forms.FileField(label='S-Verein-Export')
5     file2 = forms.FileField(label='Eigemheimer-Datei')
6     
7 class DocumentForm(forms.Form):
8     docfile = forms.FileField(
9         label='Select a file',
10         help_text='max. 42 megabytes'
11     )