blob: 429cfa89405717bc16518be86a64b213d832100d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<? if ($categories) : ?>
<form method="get" action="<?= $controller->link_for('resources/building/add' . $room_id) ?>" class="default"
data-dialog="size=auto">
<label>
<?= _('Gebäudekategorie') ?>
<select name="category_id" required>
<option value=""><?= _('Bitte eine Gebäudekategorie auswählen:') ?></option>
<? foreach ($categories as $category) : ?>
<option value="<?= $category->id ?>">
<?= htmlReady($category->name) ?>
</option>
<? endforeach ?>
</select>
</label>
<footer data-dialog-button>
<?= Studip\Button::createAccept(_('Auswählen')) ?>
</footer>
<? endif ?>
|