Added new keyboard shortcut for task view

This commit is contained in:
Frederic Guillot
2016-03-11 22:46:54 -05:00
parent b95375c324
commit 4f54a547fa
8 changed files with 55 additions and 2 deletions

View File

@@ -20,7 +20,12 @@
<?php endif ?>
</ul>
</div>
<section class="sidebar-container">
<section
class="sidebar-container" id="task-view"
data-edit-url="<?= $this->url->href('taskmodification', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"
data-subtask-url="<?= $this->url->href('subtask', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"
data-internal-link-url="<?= $this->url->href('tasklink', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"
data-comment-url="<?= $this->url->href('comment', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>">
<?= $this->render($sidebar_template, array('task' => $task)) ?>