engelsystem/resources/views/admin/schedule/load.twig

82 lines
2.6 KiB
Twig
Raw Normal View History

{% extends 'admin/schedule/index.twig' %}
2023-11-03 15:02:54 +01:00
{% import 'macros/base.twig' as m %}
{% import 'macros/form.twig' as f %}
{% block title %}{{ __('schedule.import.load.title') }}{% endblock %}
2023-12-06 19:03:12 +01:00
{% block content_title %}
{{ m.button(m.icon('chevron-left'), url('/admin/schedule'), 'secondary', 'sm', __('general.back')) }}
2023-12-06 19:03:12 +01:00
{{ block('title') }}
2023-11-03 15:02:54 +01:00
{% endblock %}
{% block row_content %}
<form method="post" action="{{ url('/admin/schedule/import/' ~ schedule_id) }}">
{{ csrf() }}
<div class="col-lg-12">
<p>{{ __('schedule.import.load.info', [schedule.conference.title, schedule.version]) }}</p>
2023-10-15 19:25:55 +02:00
<h2>{{ __('schedule.import.locations.add') }}</h2>
{{ _self.locationsTable(locations.add) }}
<h2>{{ __('schedule.import.shifts.add') }}</h2>
{{ _self.shiftsTable(shifts.add) }}
<h2>{{ __('schedule.import.shifts.update') }}</h2>
{{ _self.shiftsTable(shifts.update) }}
<h2>{{ __('schedule.import.shifts.delete') }}</h2>
{{ _self.shiftsTable(shifts.delete) }}
{{ f.submit(__('form.import'), {'icon_left': 'box-arrow-in-down'}) }}
</div>
</form>
{% endblock %}
2023-10-15 19:25:55 +02:00
{% macro locationsTable(locations) %}
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
2023-10-02 16:15:25 +02:00
<th>{{ __('general.name') }}</th>
</tr>
</thead>
<tbody>
2023-10-15 19:25:55 +02:00
{% for location in locations %}
<tr>
2023-10-15 19:25:55 +02:00
<td>{{ location.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endmacro %}
{% macro shiftsTable(shifts) %}
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>{{ __('schedule.import.shift.dates') }}</th>
<th>{{ __('schedule.import.shift.type') }}</th>
2023-10-01 22:33:58 +02:00
<th>{{ __('title.title') }}</th>
2023-10-15 19:25:55 +02:00
<th>{{ __('schedule.import.shift.location') }}</th>
</tr>
</thead>
<tbody>
{% for shift in shifts %}
<tr>
2023-11-23 14:30:46 +01:00
<td>{{ shift.date.format(__('general.datetime')) }} - {{ shift.endDate.format(__('H:i')) }}</td>
<td>{{ shift.type }}</td>
<td>{{ shift.title }}{% if shift.subtitle %}<br><small>{{ shift.subtitle }}</small>{% endif %}</td>
<td>{{ shift.room.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endmacro %}