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

Bootstrap filter and templates for use with Django forms

Results 13 django-forms-bootstrap issues
Sort by recently updated
recently updated
newest added

Is there any possibility to adapt [this commit](https://github.com/pinax/django-forms-bootstrap/pull/27/commits/dd417b083b2837b75a5268bad16c775539bba43c) to the version 2.0.3.post1 (with bootstrap v2) in order to upgrade a project to django 1.11 without upgrading bootstrap to v3 ??

I ran across the RadioSelect bug fixed in 48b966f7f0e94116ba865b907ee43b84e6d75be0, and see that the version number was bumped to 2.0.3.post2 after the fix was merged in. Is there a chance that...

question

- Projects that are using django1.8 receive unnecessary deprecation warnings while having the latest version of django-forms-bootstrap

If I use a form field like this: categories = forms.ModelMultipleChoiceField(queryset=Categories.objects.all(), widget=forms.CheckboxSelectMultiple) and send the form with one of the boxes selected it is not selected in the resulting response...

enhancement

This PR adds support for new validation form styles since Bootstrap v4. ![untitled](https://user-images.githubusercontent.com/3958340/29473604-5fbc5326-8493-11e7-96b7-f34d60f63dab.png)

It fixes #25. According to [Bootstrap](https://getbootstrap.com/docs/3.3/css/#forms-example), file inputs have not got form-control class. I have extended the existing condition to cover Django's FileInput and ClearableFileInput widget names.

Hello! I was having trouble rendering radio buttons using your bootstrap filter, and after some trial and error in [field.html](https://github.com/pinax/django-forms-bootstrap/blob/master/django_forms_bootstrap/templates/bootstrap/field.html#L31), I was able to update that template to handle radio...

I have a form with a file input and its file selection button is cut. I've tried changing it's properties in a custom css file, but I couldn't fix it....

I am using pinax/django-user accounts for user authentication in one of my project. Account/signup.html does not throw any errors if a duplicate email is entered. But when I remove the...

bug