Skip to content

Commit

Permalink
bug #24711 [TwigBridge] Re-add Bootstrap 3 Checkbox Layout (arkste)
Browse files Browse the repository at this point in the history
This PR was merged into the 3.4 branch.

Discussion
----------

[TwigBridge] Re-add Bootstrap 3 Checkbox Layout

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #24702
| License       | MIT
| Doc PR        |

Commits
-------

8ac8f9d [TwigBridge] Re-add Bootstrap 3 Checkbox Layout
  • Loading branch information
nicolas-grekas committed Oct 28, 2017
2 parents b5023ec + 8ac8f9d commit 002b3f2
Showing 1 changed file with 7 additions and 2 deletions.
Expand Up @@ -123,10 +123,15 @@
{%- endblock datetime_row %}

{% block checkbox_row -%}
{% spaceless %}
<div class="form-group{% if not valid %} has-error{% endif %}">
{{- form_widget(form) -}}
{{- form_errors(form) -}}
<div class="{{ block('form_label_class') }}"></div>
<div class="{{ block('form_group_class') }}">
{{- form_widget(form) -}}
{{- form_errors(form) -}}
</div>
</div>
{% endspaceless %}
{%- endblock checkbox_row %}

{% block radio_row -%}
Expand Down

0 comments on commit 002b3f2

Please sign in to comment.