diff --git a/snapshot/forms.py b/snapshot/forms.py new file mode 100644 index 0000000..063c115 --- /dev/null +++ b/snapshot/forms.py @@ -0,0 +1,8 @@ + + + +class UploadForm(forms.Form): + snapshot_file = forms.FileField(label=_("File")) + + def clean(self): + data = self.cleaned_data