diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-25 21:28:29 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-25 21:28:29 -0500 |
commit | 5fb686dd9c5474aba3e274bbe7917e8259aa27e3 (patch) | |
tree | 7e9b8ad9b34a1410fe96c5c1fde1ed2db8aef7d6 /app/Template/comment/remove.php | |
parent | cdfd6a8abefa6cbea2dbae9e7f758914f7fb465e (diff) |
Move comment templates to a subfolder
Diffstat (limited to 'app/Template/comment/remove.php')
-rw-r--r-- | app/Template/comment/remove.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/Template/comment/remove.php b/app/Template/comment/remove.php new file mode 100644 index 00000000..50382369 --- /dev/null +++ b/app/Template/comment/remove.php @@ -0,0 +1,17 @@ +<div class="page-header"> + <h2><?= t('Remove a comment') ?></h2> +</div> + +<div class="confirm"> + <p class="alert alert-info"> + <?= t('Do you really want to remove this comment?') ?> + </p> + + <?= Helper\template('comment/show', array('comment' => $comment, 'task' => $task, 'preview' => true)) ?> + + <div class="form-actions"> + <?= Helper\a(t('Yes'), 'comment', 'remove', array('task_id' => $task['id'], 'comment_id' => $comment['id']), true, 'btn btn-red') ?> + <?= t('or') ?> + <?= Helper\a(t('cancel'), 'task', 'show', array('task_id' => $task['id'])) ?> + </div> +</div>
\ No newline at end of file |