Это должно быть что-то простое, но я все еще не понимаю ...
Как я могу отобразить форму с меткой, содержащей URL-адрес НА ТО ЖЕ ЛИНИИ!
С чем-то вроде этого я получаю ярлык под флажком ...
{% set terms_link %}<a title="{% trans %}Read the General Terms and Conditions{% endtrans %}"
href="{{ path('homepage') }}">{% trans %}General Terms and Conditions{% endtrans %}</a>{% endset %}
{% set general_terms_and_conditions %}{{ 'I have read and accept the %general_terms_and_conditions%.'|trans({ '%general_terms_and_conditions%': terms_link })|raw }}{% endset %}
<div class="form-group">
<label for="{{ form.agreeTerms.vars.id }}">{{ general_terms_and_conditions|raw }}</label>
</div>