upload/form.py
changeset 17 08a47999f316
parent 16 a5bbfbe5feb1
child 18 07408d1ced76
equal deleted inserted replaced
16:a5bbfbe5feb1 17:08a47999f316
     1 from django import forms
       
     2 from django.utils.translation import ugettext_lazy as _
       
     3 
       
     4 attrs_dict = { 'class': 'required' }
       
     5 
       
     6 #form for file field, lets you upload file
       
     7 class FileForm(forms.Form):	
       
     8 	file = forms.FileField()
       
     9 
       
    10 #form for creating a editable box, out of the content of the file
       
    11 class Uploaded_fileForm(forms.Form):
       
    12 	content = forms.CharField(widget=forms.Textarea(attrs=attrs_dict),label=_(u'content'))