5 lines
111 B
Python
5 lines
111 B
Python
from django import forms
|
|
|
|
class DocumentForm(forms.Form):
|
|
docfile = forms.FileField(label='Select a file')
|