In my form I have some checkboxes, but by default, I have :
In Symfony 2.4, this doesn't work quite as expected.
{% block checkbox_widget %}
{% spaceless %}
{% endspaceless %}
{% endblock checkbox_widget %}
...the label is not available. You need to add the following:
{% if label is empty %}
{% set label = name|humanize %}
{% endif %}
So a complete solution is:
{% block checkbox_widget %}
{% if label is empty %}
{% set label = name|humanize %}
{% endif %}
{% spaceless %}
{% endspaceless %}
{% endblock checkbox_widget %}