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