django-bootstrap-modal-forms
django-bootstrap-modal-forms copied to clipboard
A Django plugin for creating AJAX driven forms in Bootstrap modal.
Hello ! Trying out the modal forms, it's working well overall ! But there's one thing I can't figure out : how do you restrict the access to the form...
Hi, I have a `BSModalFormView` with a `BSModalForm` for the form. When I submit the form it double posts. Since I'm deleting the initial result, when it calls the post...
Bumps [django](https://github.com/django/django) from 4.2.3 to 4.2.7. Commits d254a54 [4.2.x] Bumped version for 4.2.7 release. 048a9eb [4.2.x] Fixed CVE-2023-46695 -- Fixed potential DoS in UsernameField on Windows. 3fae5d9 [4.2.x] Refs #30601...
After playing around with minifying my html, I came across an issue where the submit button detection no longer works due to type="submit" being removed from buttons. My approach was...
If I override the post method of the BSDeleteModal class to handle a ProtectedError (because a foreign key is still pointing to the object that should be deleted), the success...
Hello, I have this issue that I cannot submit the form via multiple buttons in bootstrap modal. Check out the code below. ```html {% for payslip in payslips %} {{payslip.payslip_file}}...
Hi I'd like to have a modal with a button that opens another modal within it. Right now, my code successfully opens another modal but when I exit out of...
To help establish a consistent and, more importantly, a trusted process to minify the `static/js` contents, this should be 100% automated in a public way. My initial thought would be...
@trco, do you intend to maintain the project? There are not new commits since septemper 2021 and some pull requests like #192 waiting just to be merged. Can we help...
I was tracking down, why self.object wasn't available in my view (deriving from BSModalCreateView) during `get_success_url()`, as in Django's `BaseCreateView.form_valid(form)` the default behaviour is to set `self.object = form.save()`. However,...