aboutsummaryrefslogtreecommitdiff
path: root/app/views/shared/contacts/new_ansprechpartner.php
blob: 0dea8ba6e818e89354b43415ac54650abb297014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<form class="default" action="<?= $controller->url_for('/new_ansprechpartner') ?>" method="post" data-dialog="size=auto">

    <label>
        <select id="mvv-contacts-range_types" name="range_type">
        <? foreach ($allowed_object_types as $object_type) : ?>
            <option value="<?= $object_type ?>"><?= htmlReady($object_type::getClassDisplayName()) ?></option>
        <? endforeach; ?>
        </select>
    </label>

    <?= CSRFProtection::tokenTag(); ?>
    <div data-dialog-button>
        <?= Studip\Button::createAccept(_('Weiter'), 'store') ?>
        <?= Studip\LinkButton::createCancel(); ?>
    </div>

</form>