Skip to content

Commit

Permalink
Merge pull request #309 from makinacorpus/disable_create_button
Browse files Browse the repository at this point in the history
Prevent multiple submissions of create/update form
  • Loading branch information
submarcos authored Oct 2, 2024
2 parents 9567890 + 64570e5 commit 0e22836
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ CHANGELOG

- Due to new crispy forms, there is new login form
- Use HTML `button` tag for create/update forms
- Prevent multiple submissions of create/update form


8.9.2 (2024-07-15)
Expand Down
2 changes: 1 addition & 1 deletion mapentity/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def _init_layout(self):

# Main form layout
self.helper.help_text_inline = True
self.helper.form_class = 'form-horizontal'
self.helper.form_class = 'form-horizontal mapentity-form'
self.helper.form_style = "default"
self.helper.label_class = 'col-md-3'
self.helper.field_class = 'controls col-md-9'
Expand Down
7 changes: 7 additions & 0 deletions mapentity/static/mapentity/mapentity.forms.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
if (!window.MapEntity) window.MapEntity = {};

// Disable button if submit event on form
Array.from(document.getElementsByClassName("mapentity-form")).forEach(function (formElement) {
formElement.addEventListener('submit', function () {
formElement.querySelector("button[type=submit]").setAttribute("disabled", true);
}, false);
});

MapEntity.GeometryField = L.GeometryField.extend({

initialize: function () {
Expand Down

0 comments on commit 0e22836

Please sign in to comment.