aboutsummaryrefslogtreecommitdiff
path: root/app/views/resources/property/edit.php
blob: 86c017ee2996224b1d33370709acc3afc37dbc7e (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/edit/' . $property->id
              )?>" 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 ?>