diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-31 17:57:02 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-31 17:57:02 -0400 |
commit | 599b6624dde8cb1c1f6416ee0af530402089da4d (patch) | |
tree | 2cc995b09a4b2e67de276389fb28b0040d484296 /app/Template/export | |
parent | 380aacd3f586089ae5c1e69841c0e0cb99478dcd (diff) |
Improve project navigation
Diffstat (limited to 'app/Template/export')
-rw-r--r-- | app/Template/export/sidebar.php | 17 | ||||
-rw-r--r-- | app/Template/export/subtasks.php | 2 | ||||
-rw-r--r-- | app/Template/export/tasks.php | 2 |
3 files changed, 21 insertions, 0 deletions
diff --git a/app/Template/export/sidebar.php b/app/Template/export/sidebar.php new file mode 100644 index 00000000..f93dcafb --- /dev/null +++ b/app/Template/export/sidebar.php @@ -0,0 +1,17 @@ +<div class="sidebar"> + <h2><?= t('Exports') ?></h2> + <ul> + <li> + <?= $this->url->link(t('Tasks'), 'export', 'tasks', array('project_id' => $project['id'])) ?> + </li> + <li> + <?= $this->url->link(t('Subtasks'), 'export', 'subtasks', array('project_id' => $project['id'])) ?> + </li> + <li> + <?= $this->url->link(t('Task transitions'), 'export', 'transitions', array('project_id' => $project['id'])) ?> + </li> + <li> + <?= $this->url->link(t('Daily project summary'), 'export', 'summary', array('project_id' => $project['id'])) ?> + </li> + </ul> +</div>
\ No newline at end of file diff --git a/app/Template/export/subtasks.php b/app/Template/export/subtasks.php index d22b96a4..4aad2641 100644 --- a/app/Template/export/subtasks.php +++ b/app/Template/export/subtasks.php @@ -4,6 +4,8 @@ </h2> </div> +<p class="alert alert-info"><?= t('This report contains all subtasks information for the given date range.') ?></p> + <form method="get" action="?" autocomplete="off"> <?= $this->form->hidden('controller', $values) ?> diff --git a/app/Template/export/tasks.php b/app/Template/export/tasks.php index 5c5e2172..c74c8f98 100644 --- a/app/Template/export/tasks.php +++ b/app/Template/export/tasks.php @@ -4,6 +4,8 @@ </h2> </div> +<p class="alert alert-info"><?= t('This report contains all tasks information for the given date range.') ?></p> + <form method="get" action="?" autocomplete="off"> <?= $this->form->hidden('controller', $values) ?> |