1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/action/event.php

25 lines
895 B
PHP
Raw Normal View History

2014-11-23 20:13:38 +01:00
<div class="page-header">
<h2><?= t('Automatic actions for the project "%s"', $project['name']) ?></h2>
</div>
<h3><?= t('Choose an event') ?></h3>
2014-12-22 19:15:38 +01:00
<form method="post" action="<?= Helper\u('action', 'params', array('project_id' => $project['id'])) ?>">
2014-11-23 20:13:38 +01:00
<?= Helper\form_csrf() ?>
2014-12-22 19:15:38 +01:00
2014-11-23 20:13:38 +01:00
<?= Helper\form_hidden('project_id', $values) ?>
<?= Helper\form_hidden('action_name', $values) ?>
<?= Helper\form_label(t('Event'), 'event_name') ?>
<?= Helper\form_select('event_name', $events, $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"/>
2014-12-22 19:15:38 +01:00
<?= t('or') ?>
<?= Helper\a(t('cancel'), 'action', 'index', array('project_id' => $project['id'])) ?>
2014-11-23 20:13:38 +01:00
</div>
</form>