grammar fix and todo added
This commit is contained in:
parent
5709f8ed76
commit
3729994b5f
|
@ -38,10 +38,9 @@ class UploadForm(forms.Form):
|
|||
raise ValidationError(
|
||||
_("The snapshot already exists"),
|
||||
code="duplicate_snapshot",
|
||||
params={"file_name": file_name},
|
||||
)
|
||||
|
||||
#Caught any error and display it as Validation Error so the Form handles it
|
||||
#Catch any error and display it as Validation Error so the Form handles it
|
||||
except Exception as e:
|
||||
raise ValidationError(
|
||||
_("Error on '%(file_name)s': %(error)s"),
|
||||
|
|
|
@ -51,6 +51,7 @@ class UploadView(DashboardView, FormView):
|
|||
return response
|
||||
|
||||
def form_invalid(self, form):
|
||||
#TODO: change file_input field class to "is-invalid" if any errors occur
|
||||
response = super().form_invalid(form)
|
||||
return response
|
||||
|
||||
|
|
Loading…
Reference in New Issue