{% extends "layout.html.twig" %} {% block content %} {% set columns = { name: "Név", age: "Életkor (év)", height: "Magasság (cm)", weight: "Testtömeg (kg)", feetSize: "Lábméret", headSize: "Fejméret", sport: "Sport", skiLevel: "Sítudás / Snowboard tudás", equipment: "Felszerelés", control: "Szülői nyilatkozat", } %} {% if canModify %} {% set columns = columns|merge({ replace: "Résztvevő cseréje", update: "Szerkesztés", remove: "Törlés", }) %} {% endif %} {% set params = { columns: columns, rows: attendees, appointment: appointment, pagination: pagination, } %}
{% embed "embed/table_page.html.twig" with params %} {% block header %} {% for column in tableColumns %} {{ column.title }} {% endfor %} Szülői nyilatkozat
Letöltés | Feltöltés {% if canModify %} Résztvevő cseréje Szerkesztés Törlés {% endif %} {% endblock %} {% block empty %} {% if form.vars['submitted'] %}
Nincs találat
{% else %}
{% endif %} {% endblock empty %} {% block row %} {% if row.filled == false %} {% endif %} {% for column in tableColumns %} {{ column.getValue(row) }} {% endfor %}
{% if row.parentsConsent is not null %} {% endif %}
{% if canModify or row.parentsConsent is null %} {% endif %} {% if canModify %} {% endif %} {% endblock %} {% block page_title %}

"{{ appointment.name }}" csoport résztvevői

{% import "macro.html.twig" as macro %} Tanári felelősségvállalási nyilatkozat Szülői nyilatkozat sablon
{% endblock %} {% block grid_body %}
{% if canAdd %} Új résztvevő hozzáadása {% endif %}
Időpont: {% if appointment.bookableDate is not null %} {{ appointment.bookableDate }} {% else %} Kérem foglaljon {% if appointment.filledAttendees and appointment.valid %} {% else %} {% endif %} {% endif %}
{% if appointment.valid == false %} {% endif %} Létszám: {{ appointment.attendeePerHeadCount }}
{% if appointment.isHeadCountFull and appointment.isParentConsentFull and appointment.bookableDate is not null %}

Kedves Szervező!

A regisztráció sikeresen lezárult!
A jelentkezéseteket elfogadtuk, várunk benneteket az általad foglalt időpontban!
Köszönettel: 43ForFree csapata
{% endif %} {{ parent() }} {% endblock %} {% endembed %} {% embed "embed/modal.html.twig" with { id: "parentConsentModal" } %} {% block modal_content %} {{ form_start(parentsConsentForm, {attr: {class: "parentsConsentForm"}}) }} {{ parent() }} {{ form_end(parentsConsentForm) }} {% endblock %} {% block modal_title %} Szülői nyilatkozat feltöltése {% endblock %} {% block modal_body %} {{ form_row(parentsConsentForm.parentsConsent, {label: "Szülői nyilatkozat", attr: {lang: "hu"}}) }}
Maximális fájl méret: 2Mb
Elfogadott fájl formátum: png, pdf, jpeg
{{ form_row(parentsConsentForm.validParentsConsent, {label: "Szülői nyilatkozatot ellenőriztem", attr: {class: "validParentsConsents"}, label_attr: {class: 'checkbox-custom'}}) }} {{ form_row(parentsConsentForm.attendeeId, {attr: {class: "attendeeIdInput"}}) }} {% endblock %} {% block modal_footer %} {% endblock %} {% endembed %}
{% include "appointment/invalid_appointment_modal.html.twig" %} {% endblock %}