5 lines
115 B
Python
5 lines
115 B
Python
from django import forms
|
|
|
|
class ImportFileForm(forms.Form):
|
|
file = forms.FileField(label="Excel File (.xlsx)")
|