diff --git a/app/Template/task/dropdown.php b/app/Template/task/dropdown.php
new file mode 100644
index 000000000..3300ccf05
--- /dev/null
+++ b/app/Template/task/dropdown.php
@@ -0,0 +1,60 @@
+
+
+
+
+ -
+
+ = $this->url->link(t('Set automatically the start date'), 'taskmodification', 'start', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
+
+
+ -
+
+ = $this->url->link(t('Edit the task'), 'taskmodification', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+ -
+
+ = $this->url->link(t('Edit the description'), 'taskmodification', 'description', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+ -
+
+ = $this->url->link(t('Add a sub-task'), 'subtask', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+ -
+
+ = $this->url->link(t('Add internal link'), 'tasklink', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+ -
+
+ = $this->url->link(t('Add external link'), 'TaskExternalLink', 'find', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+ -
+
+ = $this->url->link(t('Add a comment'), 'comment', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+ -
+
+ = $this->url->link(t('Duplicate'), 'taskduplication', 'duplicate', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+ -
+
+ = $this->url->link(t('Duplicate to another project'), 'taskduplication', 'copy', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+ -
+
+ = $this->url->link(t('Move to another project'), 'taskduplication', 'move', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+
+ -
+
+
+ = $this->url->link(t('Close this task'), 'taskstatus', 'close', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+
+ = $this->url->link(t('Open this task'), 'taskstatus', 'open', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
+
+
+
+
+ = $this->hook->render('template:task:dropdown') ?>
+
+
diff --git a/app/Template/task/sidebar.php b/app/Template/task/sidebar.php
index c60a18109..d1fab13ec 100644
--- a/app/Template/task/sidebar.php
+++ b/app/Template/task/sidebar.php
@@ -28,6 +28,6 @@
= $this->url->link(t('External links'), 'TaskExternalLink', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
- = $this->hook->render('template:task:sidebar:information') ?>
+ = $this->hook->render('template:task:sidebar') ?>
diff --git a/doc/plugin-hooks.markdown b/doc/plugin-hooks.markdown
index 6e15e8587..2eb8aadde 100644
--- a/doc/plugin-hooks.markdown
+++ b/doc/plugin-hooks.markdown
@@ -151,31 +151,35 @@ Template names without prefix are core templates.
List of template hooks:
-- `template:analytic:sidebar`
-- `template:app:filters-helper:before`
-- `template:app:filters-helper:after`
-- `template:auth:login-form:before`
-- `template:auth:login-form:after`
-- `template:config:sidebar`
-- `template:config:integrations`
-- `template:dashboard:sidebar`
-- `template:export:sidebar`
-- `template:layout:head`
-- `template:layout:top`
-- `template:layout:bottom`
-- `template:project:dropdown`: "Actions" menu on left in different project views
-- `template:project:header:before`
-- `template:project:header:after`
-- `template:project:integrations`
-- `template:project:sidebar`
-- `template:project-user:sidebar`
-- `template:task:sidebar:information`
-- `template:task:sidebar:actions`
-- `template:user:authentication:form`
-- `template:user:create-remote:form`
-- `template:user:external`
-- `template:user:integrations`
-- `template:user:sidebar:actions`
-- `template:user:sidebar:information`
+| Hook | Description |
+|--------------------------------------|----------------------------------------------------|
+| `template:analytic:sidebar` | Sidebar on analytic pages |
+| `template:app:filters-helper:before` | Filter helper dropdown (top) |
+| `template:app:filters-helper:after` | Filter helper dropdown (bottom) |
+| `template:auth:login-form:before` | Login page (top) |
+| `template:auth:login-form:after` | Login page (bottom) |
+| `template:config:sidebar` | Sidebar on settings page |
+| `template:config:integrations` | Integration page in global settings |
+| `template:dashboard:sidebar` | Sidebar on dashboard page |
+| `template:export:sidebar` | Sidebar on export pages |
+| `template:layout:head` | Page layout `