aboutsummaryrefslogtreecommitdiff
path: root/locale/en/LC_MAILS/close_resource_request.php
blob: 44d995bcf52036adf02836e7f8cd407f80d08b78 (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
A request <?= $request->course instanceof Course
            ? 'for the course ' . $request->course->getFullName('number-name')
            : '' ?> has been processed.

<? if ($request->course): ?>

Lecturer(s): <?= $lecturer_names ?>

<? endif ?>

Requested room: <?= $request->resource->name ?>


Booked rooms: <?= $booked_rooms ?>


Request type: <?= $request->getTypeString() ?>


The following time ranges have been booked:
<? foreach ($metadates as $metadate) : ?>

- <?= $metadate->toString('full') ?>
<? endforeach ?>
<? foreach ($single_dates as $date) : ?>

<? if($date instanceof CourseDate) : ?>
- <?= $date->getFullname() ?>
<? else : ?>
- <?= $date->toString('default') ?>
<? endif ?>
<? endforeach ?>
<? foreach ($booked_time_intervals as $interval) : ?>

- <?= $interval ?>
<? endforeach ?>
<? if ($request->comment) : ?>


Request comment:

<?= $request->comment ?>
<? endif ?>
<? if ($request->reply_comment): ?>


Room management comment:

<?= $request->reply_comment ?>
<? endif ?>