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