diff options
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 |