diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-06-03 12:03:46 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-06-03 12:03:46 -0400 |
commit | e27148dfd8192ed3052adb8397a0f8c4ed47916d (patch) | |
tree | 1221df9bc1ef5a9396e7a23de2f7a233fddddb83 /app/Template/task_mail | |
parent | 43e4662b842248952aa53ebb69e8e833682a055c (diff) |
Add the possibility to create a comment when a task is sent by email
Diffstat (limited to 'app/Template/task_mail')
-rw-r--r-- | app/Template/task_mail/create.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Template/task_mail/create.php b/app/Template/task_mail/create.php index 9a1a26b3..b3c84e5d 100644 --- a/app/Template/task_mail/create.php +++ b/app/Template/task_mail/create.php @@ -10,6 +10,8 @@ <?= $this->form->label(t('Subject'), 'subject') ?> <?= $this->form->text('subject', $values, $errors, array('required', 'tabindex="2"')) ?> + <?= $this->form->checkbox('add_comment', t('Log this action in a comment'), 1) ?> + <?= $this->modal->submitButtons(array( 'submitLabel' => t('Send by email'), 'tabindex' => 3, |