diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-09 20:04:27 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-09 20:04:27 -0500 |
commit | 7eadf7cfd80176ab9b74c9c6a55c28db0f43fa88 (patch) | |
tree | b55b32bf9200f4ed045adfabaadb00d0ce20fc65 /app/Template/action/remove.php | |
parent | e89ba5e9e692f33427fedb05a095255f27480a6b (diff) |
Start templates cleanup and reorganisation
Diffstat (limited to 'app/Template/action/remove.php')
-rw-r--r-- | app/Template/action/remove.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/Template/action/remove.php b/app/Template/action/remove.php new file mode 100644 index 00000000..131c2b54 --- /dev/null +++ b/app/Template/action/remove.php @@ -0,0 +1,15 @@ +<div class="page-header"> + <h2><?= t('Remove an automatic action') ?></h2> +</div> + +<div class="confirm"> + <p class="alert alert-info"> + <?= t('Do you really want to remove this action: "%s"?', Helper\in_list($action['event_name'], $available_events).'/'.Helper\in_list($action['action_name'], $available_actions)) ?> + </p> + + <div class="form-actions"> + <?= Helper\a(t('Yes'), 'action', 'remove', array('project_id' => $project['id'], 'action_id' => $action['id']), true, 'btn btn-red') ?> + <?= t('or') ?> + <?= Helper\a(t('cancel'), 'action', 'index', array('project_id' => $project['id'])) ?> + </div> +</div>
\ No newline at end of file |