diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-06-03 17:51:20 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-06-03 17:51:20 -0400 |
commit | 6b9b9d2d1c27600969388ad10d749bb6febc92b6 (patch) | |
tree | 752dcbdfc7b52c17961859e705a2c7d6aa2e201f /app/Template/task_mail/create.php | |
parent | dd8d7ef49d522a15dbf0d04f033f676580f30ad7 (diff) |
Add autocomplete dropdown on comment subject and email fields
Diffstat (limited to 'app/Template/task_mail/create.php')
-rw-r--r-- | app/Template/task_mail/create.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Template/task_mail/create.php b/app/Template/task_mail/create.php index 63a515ff..4e843de9 100644 --- a/app/Template/task_mail/create.php +++ b/app/Template/task_mail/create.php @@ -1,7 +1,7 @@ <div class="page-header"> <h2><?= $this->text->e($task['title']) ?> > <?= t('Send by email') ?></h2> </div> -<form method="post" action="<?= $this->url->href('TaskMailController', 'send', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off" class="js-task-mail-form"> +<form method="post" action="<?= $this->url->href('TaskMailController', 'send', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off" class="js-mail-form"> <?= $this->form->csrf() ?> <?= $this->form->label(t('Email'), 'email') ?> @@ -22,6 +22,7 @@ <?= $this->form->label(t('Subject'), 'subject') ?> <?= $this->form->text('subject', $values, $errors, array('required', 'tabindex="2"')) ?> + <?php if (! empty($project['predefined_email_subjects'])): ?> <div class="dropdown"> <a href="#" class="dropdown-menu dropdown-menu-link-icon"><i class="fa fa-archive"></i><i class="fa fa-caret-down"></i></a> |