upload form

This commit is contained in:
Cayo Puigdefabregas 2024-07-13 15:27:36 +02:00
parent 9cdea3c45f
commit 12baa6f538
1 changed files with 8 additions and 0 deletions

8
snapshot/forms.py Normal file
View File

@ -0,0 +1,8 @@
class UploadForm(forms.Form):
snapshot_file = forms.FileField(label=_("File"))
def clean(self):
data = self.cleaned_data