summaryrefslogtreecommitdiff
path: root/resources/views/admin/schedule/load.twig
blob: 8c936bec4d9e592dce4a0fadbcf444731a71cdef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{% extends 'admin/schedule/index.twig' %}
{% import 'macros/form.twig' as f %}

{% block title %}{{ __('schedule.import.load.title') }}{% endblock %}

{% block row_content %}
    <form method="POST" action="{{ url('/admin/schedule/import') }}">
        {{ csrf() }}
        {{ f.hidden('schedule-url', schedule_url) }}
        {{ f.hidden('shift-type', shift_type) }}
        {{ f.hidden('minutes-before', minutes_before) }}
        {{ f.hidden('minutes-after', minutes_after) }}

        <div class="col-lg-12">
            <p>{{ __('schedule.import.load.info', [schedule.conference.title, schedule.version]) }}</p>

            <h2>{{ __('schedule.import.rooms.add') }}</h2>
            {{ _self.roomsTable(rooms.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')) }}
        </div>
    </form>
{% endblock %}


{% macro roomsTable(rooms) %}
    <div class="table-responsive">
        <table class="table table-striped">
            <thead>
            <tr>
                <th>{{ __('schedule.import.rooms.name') }}</th>
            </tr>
            </thead>

            <tbody>
            {% for room in rooms %}
                <tr>
                    <td>{{ room.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>
                <th>{{ __('schedule.import.shift.title') }}</th>
                <th>{{ __('schedule.import.shift.room') }}</th>
            </tr>
            </thead>

            <tbody>
            {% for shift in shifts %}
                <tr>
                    <td>{{ shift.date.format(__('Y-m-d H:i')) }} - {{ 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 %}