diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-05 17:40:49 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-05 17:40:49 -0500 |
commit | 22c5e32def94560881ad9ec032158cd570be44f4 (patch) | |
tree | 7cfe346a2b7d384c9cdcd143693bc8189ac18259 /app/Template/action_creation/event.php | |
parent | a19dc88567e6869b9082064e70db380f84032cef (diff) |
Improve automatic action creation
Diffstat (limited to 'app/Template/action_creation/event.php')
-rw-r--r-- | app/Template/action_creation/event.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/Template/action_creation/event.php b/app/Template/action_creation/event.php new file mode 100644 index 00000000..e7e5aaf9 --- /dev/null +++ b/app/Template/action_creation/event.php @@ -0,0 +1,27 @@ +<div class="page-header"> + <h2><?= t('Choose an event') ?></h2> +</div> + +<form class="popover-form" method="post" action="<?= $this->url->href('ActionCreation', 'params', array('project_id' => $project['id'])) ?>"> + + <?= $this->form->csrf() ?> + + <?= $this->form->hidden('project_id', $values) ?> + <?= $this->form->hidden('action_name', $values) ?> + + <?= $this->form->label(t('Action'), 'action_name') ?> + <?= $this->form->select('action_name', $available_actions, $values, array(), array('disabled')) ?> + + <?= $this->form->label(t('Event'), 'event_name') ?> + <?= $this->form->select('event_name', $events, $values) ?> + + <div class="form-help"> + <?= t('When the selected event occurs execute the corresponding action.') ?> + </div> + + <div class="form-actions"> + <button type="submit" class="btn btn-blue"><?= t('Next step') ?></button> + <?= t('or') ?> + <?= $this->url->link(t('cancel'), 'action', 'index', array('project_id' => $project['id']), false, 'close-popover') ?> + </div> +</form>
\ No newline at end of file |