blob: da08545e14ec96f0bf3f84b029c95a34a009fd24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<thead>
<tr>
<th><?= _('Raumname') ?></th>
<th><?= _('Sitzplätze') ?></th>
<? if ($additional_properties): ?>
<? foreach ($additional_properties as $display_name): ?>
<th>
<?= htmlReady($display_name) ?>
</th>
<? endforeach ?>
<? endif ?>
<? if ($additional_columns): ?>
<? foreach ($additional_columns as $column_name): ?>
<th>
<?= htmlReady($column_name) ?>
</th>
<? endforeach ?>
<? endif ?>
<th class="actions"><?= _('Aktionen') ?></th>
</tr>
</thead>
|