5 lines
97 B
Python
5 lines
97 B
Python
from django import forms
|
|
|
|
class ImportProductsForm(forms.Form):
|
|
csv_file = forms.FileField()
|