diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-08-07 10:31:48 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-08-07 10:31:48 -0400 |
commit | c0ee8b409223ee38a24a7bbd896efe9386e785b2 (patch) | |
tree | 4f31a6fef1bcfbd0ff601bdb178d9adbb9170b81 /app/Template/task_gantt_creation/show.php | |
parent | 928d27d2ad735d9c6c7ec4954a5a462181f482dd (diff) |
Show project name in task forms
Diffstat (limited to 'app/Template/task_gantt_creation/show.php')
-rw-r--r-- | app/Template/task_gantt_creation/show.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/task_gantt_creation/show.php b/app/Template/task_gantt_creation/show.php index 7521d805..7906c39a 100644 --- a/app/Template/task_gantt_creation/show.php +++ b/app/Template/task_gantt_creation/show.php @@ -1,7 +1,7 @@ <div class="page-header"> - <h2><?= t('New task') ?></h2> + <h2><?= $this->text->e($project['name']) ?> > <?= t('New task') ?></h2> </div> -<form method="post" action="<?= $this->url->href('TaskGanttCreationController', 'save', array('project_id' => $values['project_id'])) ?>" autocomplete="off"> +<form class="popover-form" method="post" action="<?= $this->url->href('TaskGanttCreationController', 'save', array('project_id' => $values['project_id'])) ?>" autocomplete="off"> <?= $this->form->csrf() ?> <?= $this->form->hidden('project_id', $values) ?> <?= $this->form->hidden('column_id', $values) ?> |