django-bootstrap4 icon indicating copy to clipboard operation
django-bootstrap4 copied to clipboard

Bootstrap 4 integration with Django.

Results 41 django-bootstrap4 issues
Sort by recently updated
recently updated
newest added

See https://code.djangoproject.com/ticket/32338 I believe the described issue would still exist in this library even if it gets fixed in django.

![image](https://user-images.githubusercontent.com/6462531/119434391-b99e2e80-bd35-11eb-9546-47491a5c9a8c.png) I want them the forms errors to be shown like layout="horizontal" mode ![image](https://user-images.githubusercontent.com/6462531/119434533-0550d800-bd36-11eb-9393-5e41aa144612.png)

``` class MaterialRequest(models.Model): material_name = models.CharField(max_length = 50) quantity = models.FloatField() date_required_by = models.DateTimeField() ``` and ``` class MaterialRequestForm(forms.ModelForm): class Meta: model = MaterialRequest ``` how to add datepicker template...

See also: https://caniuse.com/#feat=form-submit-attributes This would be awesome considering that `form` elements are not allowed to be nested. For constructing a formset with some buttons that do something with individual objects...

please discuss

I change to bootstrap4 from bootstrap3. I have a filter form on top of a table, rendered with ``` {% if filter %} {% bootstrap_form filter.form layout='inline' %} {% bootstrap_button...

please discuss

This is my first PR to this library, I've followed the contributing guidelines to the best of my knowledge but any feedback is appreciated.

Similar to https://github.com/dyve/django-bootstrap3/issues/414, the show_label=False directive is ignored for checkbox fields. {% bootstrap_field editabletext_form.DELETE layout="horizontal" show_label=False %} renders   Delete Whilst the first `` is fine, should sr-only be supported...

bug

Hello, This code don't show correctly. `{% bootstrap_field field layout="inline" addon_before=somelabel size="small" %}` Inputs are corrects sur the div's class in "input-group" and not "input-group input-group-sm" there is a mission...

bug

In `bootstrap4/templatetags/bootstrap4.py`, there's a function `bootstrap_message_classes` which figures out what classes to assign to a Bootstrap Alert generated from a Django message. Right now, it makes the obvious mappings, except...

please discuss

Since URLField is rendered as \< input \>, one would expect addon_before / addon_after to work the same as for CharField or IntegerField, but currently it does not

bug