-
= t('My projects') ?>
-
-
= t('Your are not member of any project.') ?>
-
-
-
- | |
- = t('Project') ?> |
- = t('Columns') ?> |
-
-
-
- |
- = Helper\a('#'.$project['id'], 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link') ?>
- |
-
-
- = Helper\a('', 'project', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Settings')) ?>
-
- = Helper\a(Helper\escape($project['name']), 'board', 'show', array('project_id' => $project['id'])) ?>
- |
-
-
- = $column['nb_tasks'] ?>
- = Helper\escape($column['title']) ?>
-
- |
-
-
-
-
-
-
= t('My tasks') ?>
-
-
= t('There is nothing assigned to you.') ?>
-
-
-
- | |
- = t('Project') ?> |
- = t('Task') ?> |
- = t('Due date') ?> |
-
-
-
- |
- = Helper\a('#'.$task['id'], 'task', 'show', array('task_id' => $task['id'])) ?>
- |
-
- = Helper\a(Helper\escape($task['project_name']), 'board', 'show', array('project_id' => $task['project_id'])) ?>
- |
-
- = Helper\a(Helper\escape($task['title']), 'task', 'show', array('task_id' => $task['id'])) ?>
- |
-
- = dt('%B %e, %Y', $task['date_due']) ?>
- |
-
-
-
-
-
-
= t('My subtasks') ?>
-
-
= t('There is nothing assigned to you.') ?>
-
-
-
- | |
- = t('Project') ?> |
- = t('Status') ?> |
- = t('Subtask') ?> |
-
-
-
- |
- = Helper\a('#'.$subtask['task_id'], 'task', 'show', array('task_id' => $subtask['task_id'])) ?>
- |
-
- = Helper\a(Helper\escape($subtask['project_name']), 'board', 'show', array('project_id' => $subtask['project_id'])) ?>
- |
-
- = Helper\escape($subtask['status_name']) ?>
- |
-
- = Helper\a(Helper\escape($subtask['title']), 'task', 'show', array('task_id' => $subtask['task_id'])) ?>
- |
-
-
-
-
-
-
-
-
= t('Activity stream') ?>
- = Helper\template('project_events', array('events' => $events)) ?>
-
-
\ No newline at end of file
diff --git a/app/Template/app/projects.php b/app/Template/app/projects.php
new file mode 100644
index 000000000..2c13a052b
--- /dev/null
+++ b/app/Template/app/projects.php
@@ -0,0 +1,33 @@
+
= t('My projects') ?>
+
+
= t('Your are not member of any project.') ?>
+
+
+
+ | = Helper\order('Id', 'id', $pagination) ?> |
+ = Helper\order(t('Project'), 'name', $pagination) ?> |
+ = t('Columns') ?> |
+
+
+
+ |
+ = Helper\a('#'.$project['id'], 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link') ?>
+ |
+
+
+ = Helper\a('', 'project', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Settings')) ?>
+
+ = Helper\a(Helper\escape($project['name']), 'board', 'show', array('project_id' => $project['id'])) ?>
+ |
+
+
+ = $column['nb_tasks'] ?>
+ = Helper\escape($column['title']) ?>
+
+ |
+
+
+
+
+ = Helper\paginate($pagination) ?>
+
\ No newline at end of file
diff --git a/app/Template/app/subtasks.php b/app/Template/app/subtasks.php
new file mode 100644
index 000000000..f51ef1db0
--- /dev/null
+++ b/app/Template/app/subtasks.php
@@ -0,0 +1,31 @@
+
= t('My subtasks') ?>
+
+
= t('There is nothing assigned to you.') ?>
+
+
+
+ | = Helper\order(t('Task Id'), 'tasks.id', $pagination) ?> |
+ = Helper\order(t('Project'), 'project_name', $pagination) ?> |
+ = Helper\order(t('Status'), 'status', $pagination) ?> |
+ = Helper\order(t('Subtask'), 'title', $pagination) ?> |
+
+
+
+ |
+ = Helper\a('#'.$subtask['task_id'], 'task', 'show', array('task_id' => $subtask['task_id'])) ?>
+ |
+
+ = Helper\a(Helper\escape($subtask['project_name']), 'board', 'show', array('project_id' => $subtask['project_id'])) ?>
+ |
+
+ = Helper\escape($subtask['status_name']) ?>
+ |
+
+ = Helper\a(Helper\escape($subtask['title']), 'task', 'show', array('task_id' => $subtask['task_id'])) ?>
+ |
+
+
+
+
+ = Helper\paginate($pagination) ?>
+
\ No newline at end of file
diff --git a/app/Template/app/tasks.php b/app/Template/app/tasks.php
new file mode 100644
index 000000000..d1e1ed4e7
--- /dev/null
+++ b/app/Template/app/tasks.php
@@ -0,0 +1,31 @@
+
= t('My tasks') ?>
+
+
= t('There is nothing assigned to you.') ?>
+
+
+
+ | = Helper\order('Id', 'tasks.id', $pagination) ?> |
+ = Helper\order(t('Project'), 'project_name', $pagination) ?> |
+ = Helper\order(t('Task'), 'title', $pagination) ?> |
+ = Helper\order(t('Due date'), 'date_due', $pagination) ?> |
+
+
+
+ |
+ = Helper\a('#'.$task['id'], 'task', 'show', array('task_id' => $task['id'])) ?>
+ |
+
+ = Helper\a(Helper\escape($task['project_name']), 'board', 'show', array('project_id' => $task['project_id'])) ?>
+ |
+
+ = Helper\a(Helper\escape($task['title']), 'task', 'show', array('task_id' => $task['id'])) ?>
+ |
+
+ = dt('%B %e, %Y', $task['date_due']) ?>
+ |
+
+
+
+
+ = Helper\paginate($pagination) ?>
+
\ No newline at end of file
diff --git a/app/helpers.php b/app/helpers.php
index 14d6a5ee0..b53e59e74 100644
--- a/app/helpers.php
+++ b/app/helpers.php
@@ -618,8 +618,8 @@ function paginate(array $pagination)
{
extract($pagination);
- $html = '