6 lines
93 B
Python
6 lines
93 B
Python
from django import forms
|
|
|
|
|
|
class ImportForm(forms.Form):
|
|
file_import = forms.FileField()
|