diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-04-11 17:38:41 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-04-11 17:38:41 -0400 |
commit | ea9d402587d6fbcb39080a5d9a26e94ff4575443 (patch) | |
tree | acd1a97de1f7fd541529d154912ddde6eda3ce23 /app/Template/column/remove.php | |
parent | 340f4f912b46ff711be304ecb3a12115f82e5f48 (diff) |
Add column controller
Diffstat (limited to 'app/Template/column/remove.php')
-rw-r--r-- | app/Template/column/remove.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/Template/column/remove.php b/app/Template/column/remove.php new file mode 100644 index 00000000..3dcbd62f --- /dev/null +++ b/app/Template/column/remove.php @@ -0,0 +1,15 @@ +<div class="page-header"> + <h2><?= t('Remove a column') ?></h2> +</div> + +<div class="confirm"> + <p class="alert alert-info"> + <?= t('Do you really want to remove this column: "%s"?', $column['title']) ?> + <?= t('This action will REMOVE ALL TASKS associated to this column!') ?> + </p> + + <div class="form-actions"> + <?= $this->a(t('Yes'), 'column', 'remove', array('project_id' => $project['id'], 'column_id' => $column['id'], 'remove' => 'yes'), true, 'btn btn-red') ?> + <?= t('or') ?> <?= $this->a(t('cancel'), 'column', 'index', array('project_id' => $project['id'])) ?> + </div> +</div>
\ No newline at end of file |