diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-08-07 10:33:23 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-08-07 10:33:23 -0400 |
commit | 590d2c239637269c66bcc39d7c72fda6a564efcc (patch) | |
tree | 7cddec5780c2eeb8b7755179e9965c33dc0ed85e | |
parent | c0ee8b409223ee38a24a7bbd896efe9386e785b2 (diff) |
Show project name on task bulk creation form
-rw-r--r-- | app/Template/task_bulk/show.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/task_bulk/show.php b/app/Template/task_bulk/show.php index e9b138d5..11ddea31 100644 --- a/app/Template/task_bulk/show.php +++ b/app/Template/task_bulk/show.php @@ -1,5 +1,5 @@ <div class="page-header"> - <h2><?= t('Create tasks in bulk') ?></h2> + <h2><?= $this->text->e($project['name']) ?> > <?= t('Create tasks in bulk') ?></h2> </div> <form class="popover-form" method="post" action="<?= $this->url->href('TaskBulkController', 'save', array('project_id' => $project['id'])) ?>" autocomplete="off"> |