aboutsummaryrefslogtreecommitdiff
path: root/app/views/resources/property/add.php
blob: 8a665ff14d71e562863a466f75ef0e316a86e17e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<? if ($show_form): ?>
    <form class="default" method="post"
          action="<?= URLHelper::getLink(
                  'dispatch.php/resources/property/add'
                  )?>" data-dialog="reload-on-close">
        <?= CSRFProtection::tokenTag() ?>
        <?= $this->render_partial('resources/property/_add_edit_form.php') ?>
        <div data-dialog-button>
            <?= \Studip\Button::create(
                _('Speichern'),
                'save'
            ) ?>
        </div>
    </form>
<? endif ?>