summaryrefslogtreecommitdiff
path: root/app/Template/external_task_creation/step1.php
blob: 2a3b0144a1081cdb2c401af404c4cfd5de794470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<form method="post" action="<?= $this->url->href('ExternalTaskCreationController', 'step2', array('project_id' => $project['id'], 'provider_name' => $provider_name)) ?>">
    <?= $this->form->csrf() ?>
    <?= $this->form->hidden('swimlane_id', $values) ?>
    <?= $this->form->hidden('column_id', $values) ?>

    <?= $this->render($template, array(
        'project' => $project,
        'values' => $values,
    )) ?>

    <?php if (! empty($error_message)): ?>
        <div class="alert alert-error"><?= $this->text->e($error_message) ?></div>
    <?php endif ?>

    <?= $this->modal->submitButtons(array('submitLabel' => t('Next'))) ?>
</form>