diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-24 21:21:22 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-24 21:21:22 -0400 |
commit | 4c8d5fbdc0a95243b5233ba471d3a9ac0bc5c6d9 (patch) | |
tree | 7adbf4f687bbe9e69c47ab5e423d77b0793996e6 /app/Template/board/task_private.php | |
parent | 3a06e0ab21ef12e4193f52260e7ecf367c6bb8f0 (diff) |
Move avatar to the top right corner
Diffstat (limited to 'app/Template/board/task_private.php')
-rw-r--r-- | app/Template/board/task_private.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/Template/board/task_private.php b/app/Template/board/task_private.php index 42e59b72..19bcbcfa 100644 --- a/app/Template/board/task_private.php +++ b/app/Template/board/task_private.php @@ -44,18 +44,18 @@ </span> <?php endif ?> - <?= $this->hook->render('template:board:private:task:before-title', array('task' => $task)) ?> + <?= $this->render('board/task_avatar', array('task' => $task)) ?> - <span class="task-board-title"> + <?= $this->hook->render('template:board:private:task:before-title', array('task' => $task)) ?> + <div class="task-board-title"> <?= $this->url->link($this->text->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?> - </span> - + </div> <?= $this->hook->render('template:board:private:task:after-title', array('task' => $task)) ?> <?= $this->render('board/task_footer', array( - 'task' => $task, - 'not_editable' => $not_editable, - 'project' => $project, + 'task' => $task, + 'not_editable' => $not_editable, + 'project' => $project, )) ?> </div> <?php endif ?> |