Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save baldurrensch/3438451 to your computer and use it in GitHub Desktop.
Save baldurrensch/3438451 to your computer and use it in GitHub Desktop.
Another Form Theming
{% block choice_widget %}
{% spaceless %}
<div class="control-group">
{% for child in form %}
{{ form_label(child) }}
{{ form_widget(child) }}</label>
{% endfor %}
</div>
{% endspaceless %}
{% endblock %}
{% block generic_label %}
{% spaceless %}
<label class="checkbox">{{ label|trans|raw }}
{% endspaceless %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment