django-bootstrap-modal-forms icon indicating copy to clipboard operation
django-bootstrap-modal-forms copied to clipboard

A Django plugin for creating AJAX driven forms in Bootstrap modal.

Results 53 django-bootstrap-modal-forms issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

Q&A

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...

dependencies

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...

Q&A

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...

bug

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}}...

Q&A

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...

Q&A

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...

improvement

@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...

discussion

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,...