{% extends "layout.html.twig" %} {% block content %} {% embed "embed/page.html.twig" %} {% block page_title %} {% import "macro.html.twig" as macro %}

Program szervező felhasználó frissítése

{% endblock %} {% block page_content %} {{ form_start(form) }} {{ form_row(form.name, {label: "Név"}) }} {{ form_row(form.email, {label: "E-mail"}) }} {{ form_row(form.phone, {label: "Telefonszám"}) }}
{% for tourType in form.tourTypes %}

{{ "project.%s"|format(tourType.vars.name)|trans }}

{{ form_row(tourType, {label: false, attr: {class: "select2"}}) }}
{% endfor %}
{{ form_rest(form) }}
Vissza
{{ form_end(form) }} {% endblock %} {% endembed %} {% endblock %}