diff options
Diffstat (limited to 'app/Templates/action_index.php')
-rw-r--r-- | app/Templates/action_index.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/app/Templates/action_index.php b/app/Templates/action_index.php index c21395fd..2647e4a7 100644 --- a/app/Templates/action_index.php +++ b/app/Templates/action_index.php @@ -50,20 +50,13 @@ <?php endif ?> <h3><?= t('Add an action') ?></h3> -<form method="post" action="?controller=action&action=params&project_id=<?= $project['id'] ?>" autocomplete="off"> +<form method="post" action="?controller=action&action=event&project_id=<?= $project['id'] ?>" autocomplete="off"> <?= Helper\form_csrf() ?> <?= Helper\form_hidden('project_id', $values) ?> - <?= Helper\form_label(t('Event'), 'event_name') ?> - <?= Helper\form_select('event_name', $available_events, $values) ?><br/> - <?= Helper\form_label(t('Action'), 'action_name') ?> <?= Helper\form_select('action_name', $available_actions, $values) ?><br/> - <div class="form-help"> - <?= t('When the selected event occurs execute the corresponding action.') ?> - </div> - <div class="form-actions"> <input type="submit" value="<?= t('Next step') ?>" class="btn btn-blue"/> </div> |