mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-21 17:54:24 +00:00
88 lines
2.3 KiB
Twig
88 lines
2.3 KiB
Twig
<h1>{{ "Calendar item creation"|trans }}</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_errors(form) }}
|
|
|
|
<div id="calendar"></div> {# <=== vue component #}
|
|
|
|
<div id="mainUser"></div> {# <=== vue component: mainUser #}
|
|
|
|
<h2 class="chill-red">{{ 'Concerned groups'|trans }}</h2>
|
|
|
|
{%- if form.mainUser is defined -%}
|
|
{{ form_row(form.mainUser) }}
|
|
{% endif %}
|
|
|
|
{%- if form.persons is defined -%}
|
|
{{ form_widget(form.persons) }}
|
|
{% endif %}
|
|
{%- if form.professionals is defined -%}
|
|
{{ form_widget(form.professionals) }}
|
|
{% endif %}
|
|
{%- if form.nonProfessionals is defined -%}
|
|
{{ form_widget(form.nonProfessionals) }}
|
|
{% endif %}
|
|
{%- if form.users is defined -%}
|
|
{{ form_widget(form.users) }}
|
|
{% endif %}
|
|
|
|
<div id="add-persons"></div>
|
|
|
|
<h2 class="chill-red">{{ 'Calendar data'|trans }}</h2>
|
|
|
|
<div id="schedule"></div>
|
|
|
|
{%- if form.location is defined -%}
|
|
{{ form_row(form.location) }}
|
|
<div id="location"></div>
|
|
{% endif %}
|
|
|
|
{%- if form.startDate is defined -%}
|
|
{{ form_row(form.startDate) }}
|
|
{% endif %}
|
|
|
|
{%- if form.endDate is defined -%}
|
|
{{ form_row(form.endDate) }}
|
|
{% endif %}
|
|
|
|
{%- if form.calendarRange is defined -%}
|
|
{{ form_row(form.calendarRange) }}
|
|
{% endif %}
|
|
|
|
<div id="fullCalendar"></div>
|
|
|
|
{%- if form.comment is defined -%}
|
|
{{ form_row(form.comment) }}
|
|
{% endif %}
|
|
|
|
{%- if form.privateComment is defined -%}
|
|
{{ form_row(form.privateComment) }}
|
|
{% endif %}
|
|
|
|
{%- if form.sendSMS is defined -%}
|
|
{{ form_row(form.sendSMS) }}
|
|
{% endif %}
|
|
|
|
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<li class="cancel">
|
|
<a
|
|
class="btn btn-cancel"
|
|
{%- if context == 'person' -%}
|
|
href="{{ chill_return_path_or('chill_calendar_calendar_list_by_person', { 'id': person.id } )}}"
|
|
{%- else -%}
|
|
href="{{ chill_return_path_or('chill_calendar_calendar_list_by_period', { 'id': accompanyingCourse.id } )}}"
|
|
{%- endif -%}
|
|
>
|
|
{{ 'Cancel'|trans|chill_return_path_label }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
{{ form_widget(form.save_and_create_doc, { 'attr' : { 'class' : 'btn btn-create' }, 'label': 'chill_calendar.Create and add a document'|trans }) }}
|
|
</li>
|
|
<li>
|
|
{{ form_widget(form.save, { 'attr' : { 'class' : 'btn btn-create' }, 'label': 'Create'|trans }) }}
|
|
</li>
|
|
</ul>
|
|
{{ form_end(form) }}
|