eds/cms/forms.py

12 lines
262 B
Python
Raw Normal View History

2017-01-05 07:09:33 +01:00
# -*- encoding: utf-8 -*-
'''
Created on 17 nov. 2012
@author: alzo
'''
from django import forms
class DocumentForm(forms.Form):
docfile = forms.FileField(label='Selectionner un fichier',
help_text='Taille max.: 42 megabytes')