diff --git a/ChangeLog b/ChangeLog
index d8fd2fd5a..e1c622897 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,7 @@ Core functionalities moved to plugins:
Improvements:
+* Include more shortcut links into the view "My projects"
* Duplicate a project with tasks will copy the new tasks in the same columns
* Offer alternative method to create Mysql and Postgres databases (import sql dump)
* Make sure there is always a trailing slash for application_url
diff --git a/app/Template/app/projects.php b/app/Template/app/projects.php
index 43db85bda..ef77a9f42 100644
--- a/app/Template/app/projects.php
+++ b/app/Template/app/projects.php
@@ -6,8 +6,9 @@
- | = $paginator->order('Id', 'id') ?> |
- = $paginator->order(t('Project'), 'name') ?> |
+ = $paginator->order('Id', 'id') ?> |
+ = $paginator->order('', 'is_private') ?> |
+ = $paginator->order(t('Project'), 'name') ?> |
= t('Columns') ?> |
getCollection() as $project): ?>
@@ -15,11 +16,18 @@
= $this->url->link('#'.$project['id'], 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link') ?>
|
+
+
+
+
+ |
user->isProjectManagementAllowed($project['id'])): ?>
- = $this->url->link('', 'project', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Settings')) ?>
+ = $this->url->link('', 'project', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Settings')) ?>
+ = $this->url->link('', 'gantt', 'project', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Gantt chart')) ?>
+ = $this->url->link('', 'listing', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('List')) ?>
= $this->url->link('', 'calendar', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Calendar')) ?>
= $this->url->link($this->e($project['name']), 'board', 'show', array('project_id' => $project['id'])) ?>
diff --git a/app/Template/project/index.php b/app/Template/project/index.php
index 5ca6e6b53..4b62a27f9 100644
--- a/app/Template/project/index.php
+++ b/app/Template/project/index.php
@@ -11,91 +11,89 @@
-
- isEmpty()): ?>
- = t('No project') ?>
-
-
-
- | = $paginator->order(t('Id'), 'id') ?> |
- = $paginator->order(t('Status'), 'is_active') ?> |
- = $paginator->order(t('Project'), 'name') ?> |
- = $paginator->order(t('Start date'), 'start_date') ?> |
- = $paginator->order(t('End date'), 'end_date') ?> |
- user->isAdmin() || $this->user->isProjectAdmin()): ?>
- = t('Managers') ?> |
- = t('Members') ?> |
+ isEmpty()): ?>
+ = t('No project') ?>
+
+
+
+ | = $paginator->order(t('Id'), 'id') ?> |
+ = $paginator->order(t('Status'), 'is_active') ?> |
+ = $paginator->order(t('Project'), 'name') ?> |
+ = $paginator->order(t('Start date'), 'start_date') ?> |
+ = $paginator->order(t('End date'), 'end_date') ?> |
+ user->isAdmin() || $this->user->isProjectAdmin()): ?>
+ = t('Managers') ?> |
+ = t('Members') ?> |
+
+ = t('Columns') ?> |
+
+ getCollection() as $project): ?>
+
+ |
+ = $this->url->link('#'.$project['id'], 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link') ?>
+ |
+
+
+ = t('Active') ?>
+
+ = t('Inactive') ?>
- | = t('Columns') ?> |
-
- getCollection() as $project): ?>
-
- |
- = $this->url->link('#'.$project['id'], 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link') ?>
- |
-
-
- = t('Active') ?>
-
- = t('Inactive') ?>
-
- |
-
- = $this->url->link('', 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Board')) ?>
- = $this->url->link('', 'gantt', 'project', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Gantt chart')) ?>
+ |
+
+ = $this->url->link('', 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Board')) ?>
+ = $this->url->link('', 'gantt', 'project', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Gantt chart')) ?>
-
-
-
-
-
-
+
+
+
+
+
+
-
- '>
-
-
-
+
+ '>
+
+
+
- = $this->url->link($this->e($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?>
- |
-
- = $project['start_date'] ?>
- |
-
- = $project['end_date'] ?>
- |
- user->isAdmin() || $this->user->isProjectAdmin()): ?>
-
+ = $this->url->link($this->e($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?>
+ |
+
+ = $project['start_date'] ?>
+ |
+
+ = $project['end_date'] ?>
+ |
+ user->isAdmin() || $this->user->isProjectAdmin()): ?>
+
+
+ $user_name): ?>
+ - = $this->url->link($this->e($user_name), 'projectuser', 'opens', array('user_id' => $user_id)) ?>
+
+
+ |
+
+
+ = t('Everybody') ?>
+
- $user_name): ?>
+ $user_name): ?>
- = $this->url->link($this->e($user_name), 'projectuser', 'opens', array('user_id' => $user_id)) ?>
- |
-
-
- = t('Everybody') ?>
-
-
- $user_name): ?>
- - = $this->url->link($this->e($user_name), 'projectuser', 'opens', array('user_id' => $user_id)) ?>
-
-
-
- |
-
-
- = $column['nb_tasks'] ?>
- = $this->e($column['title']) ?>
-
- |
-
-
-
+
+
+
+
+ = $column['nb_tasks'] ?>
+ = $this->e($column['title']) ?>
+
+ |
+
+
+
- = $paginator ?>
-
-
+ = $paginator ?>
+
|