aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/symfony/twig-bridge/Symfony/Bridge/Twig/Tests/Extension/custom_widgets.html.twig
blob: 12fd7c66d8245ca0bb2e8cad7d2de5fb4fb9cf3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% block _text_id_widget %}
{% spaceless %}
    <div id="container">
        {{ form_widget(form) }}
    </div>
{% endspaceless %}
{% endblock _text_id_widget %}

{% block _name_entry_label %}
{% spaceless %}
    {% if label is empty %}
        {% set label = name|humanize %}
    {% endif %}
    <label>Custom label: {{ label|trans({}, translation_domain) }}</label>
{% endspaceless %}
{% endblock _name_entry_label %}