diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-21 17:43:15 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-21 17:43:15 -0500 |
commit | 3a56d215fc9797352fc523d51a7ba8d10ba01a80 (patch) | |
tree | 9e6d84ff8186ef65b37de24a1f292ce363b71703 /app/Template/board/task_private.php | |
parent | b9dd69853d1398148c7cc2a68c483e01b68882f9 (diff) |
Add task menu in collapsed mode
Diffstat (limited to 'app/Template/board/task_private.php')
-rw-r--r-- | app/Template/board/task_private.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/app/Template/board/task_private.php b/app/Template/board/task_private.php new file mode 100644 index 00000000..efc5bacf --- /dev/null +++ b/app/Template/board/task_private.php @@ -0,0 +1,50 @@ +<div class="task-board draggable-item color-<?= $task['color_id'] ?> <?= $task['date_modification'] > time() - $board_highlight_period ? 'task-board-recent' : '' ?>" + data-task-id="<?= $task['id'] ?>" + data-owner-id="<?= $task['owner_id'] ?>" + data-category-id="<?= $task['category_id'] ?>" + data-due-date="<?= $task['date_due'] ?>" + data-task-url="<?= $this->u('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" + title="<?= t('View this task') ?>"> + + <?= $this->render('board/task_menu', array('task' => $task)) ?> + + <div class="task-board-collapsed" style="display: none"> + <?= $this->a($this->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'task-board-collapsed-title') ?> + </div> + + <div class="task-board-expanded"> + + <?php if ($task['reference']): ?> + <span class="task-board-reference" title="<?= t('Reference') ?>"> + (<?= $task['reference'] ?>) + </span> + <?php endif ?> + + <span class="task-board-user <?= $this->userSession->isCurrentUser($task['owner_id']) ? 'task-board-current-user' : '' ?>"> + <?= $this->a( + (! empty($task['owner_id']) ? ($task['assignee_name'] ?: $task['assignee_username']) : t('Nobody assigned')), + 'board', + 'changeAssignee', + array('task_id' => $task['id'], 'project_id' => $task['project_id']), + false, + 'task-board-popover', + t('Change assignee') + ) ?> + </span> + + <?php if ($task['score']): ?> + <span class="task-score"><?= $this->e($task['score']) ?></span> + <?php endif ?> + + <div class="task-board-days"> + <span title="<?= t('Task age in days')?>" class="task-days-age"><?= $this->getTaskAge($task['date_creation']) ?></span> + <span title="<?= t('Days in this column')?>" class="task-days-incolumn"><?= $this->getTaskAge($task['date_moved']) ?></span> + </div> + + <div class="task-board-title"> + <?= $this->a($this->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?> + </div> + + <?= $this->render('board/task_footer', array('task' => $task, 'categories' => $categories)) ?> + </div> +</div> |