diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/board_index.php | 1 | ||||
-rw-r--r-- | templates/project_search.php | 80 | ||||
-rw-r--r-- | templates/project_tasks.php | 14 |
3 files changed, 91 insertions, 4 deletions
diff --git a/templates/board_index.php b/templates/board_index.php index fc7a4932..f7fa4bdd 100644 --- a/templates/board_index.php +++ b/templates/board_index.php @@ -22,6 +22,7 @@ <?= Helper\form_select('user_id', $users, $filters) ?> </li> <li><a href="#" id="filter-due-date"><?= t('Filter by due date') ?></a></li> + <li><a href="?controller=project&action=search&project_id=<?= $current_project_id ?>"><?= t('Search') ?></a></li> <li><a href="?controller=project&action=tasks&project_id=<?= $current_project_id ?>"><?= t('Completed tasks') ?></a></li> </ul> </div> diff --git a/templates/project_search.php b/templates/project_search.php new file mode 100644 index 00000000..d7d7748e --- /dev/null +++ b/templates/project_search.php @@ -0,0 +1,80 @@ +<section id="main"> + <div class="page-header"> + <h2> + <?= t('Search in the project "%s"', $project['name']) ?> + <?php if (! empty($nb_tasks)): ?> + <span id="page-counter"> (<?= $nb_tasks ?>)</span> + <?php endif ?> + </h2> + <ul> + <li><a href="?controller=board&action=show&project_id=<?= $project['id'] ?>"><?= t('Back to the board') ?></a></li> + <li><a href="?controller=project&action=tasks&project_id=<?= $project['id'] ?>"><?= t('Completed tasks') ?></a></li> + <li><a href="?controller=project&action=index"><?= t('List of projects') ?></a></li> + </ul> + </div> + <section> + <form method="get" action="?" autocomplete="off"> + <?= Helper\form_hidden('controller', $values) ?> + <?= Helper\form_hidden('action', $values) ?> + <?= Helper\form_hidden('project_id', $values) ?> + <?= Helper\form_text('search', $values, array(), array('autofocus', 'required', 'placeholder="'.t('Search').'"')) ?> + <input type="submit" value="<?= t('Search') ?>" class="btn btn-blue"/> + </form> + + <?php if (empty($tasks) && ! empty($values['search'])): ?> + <p class="alert"><?= t('Nothing found.') ?></p> + <?php elseif (! empty($tasks)): ?> + <table> + <tr> + <th><?= t('Id') ?></th> + <th><?= t('Column') ?></th> + <th><?= t('Title') ?></th> + <th><?= t('Assignee') ?></th> + <th><?= t('Due date') ?></th> + <th><?= t('Date created') ?></th> + <th><?= t('Date completed') ?></th> + <th><?= t('Status') ?></th> + </tr> + <?php foreach ($tasks as $task): ?> + <tr> + <td class="task task-<?= $task['color_id'] ?>"> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['id']) ?></a> + </td> + <td> + <?= Helper\in_list($task['column_id'], $columns) ?> + </td> + <td> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a> + </td> + <td> + <?php if ($task['username']): ?> + <?= Helper\escape($task['username']) ?> + <?php else: ?> + <?= t('Unassigned') ?> + <?php endif ?> + </td> + <td> + <?= dt('%B %e, %G', $task['date_due']) ?> + </td> + <td> + <?= dt('%B %e, %G at %k:%M %p', $task['date_creation']) ?> + </td> + <td> + <?php if ($task['date_completed']): ?> + <?= dt('%B %e, %G at %k:%M %p', $task['date_completed']) ?> + <?php endif ?> + </td> + <td> + <?php if ($task['is_active'] == \Model\Task::STATUS_OPEN): ?> + <?= t('Open') ?> + <?php else: ?> + <?= t('Closed') ?> + <?php endif ?> + </td> + </tr> + <?php endforeach ?> + </table> + <?php endif ?> + + </section> +</section>
\ No newline at end of file diff --git a/templates/project_tasks.php b/templates/project_tasks.php index d54565f3..1ffd52ac 100644 --- a/templates/project_tasks.php +++ b/templates/project_tasks.php @@ -3,10 +3,8 @@ <h2><?= t('Completed tasks for "%s"', $project['name']) ?><span id="page-counter"> (<?= $nb_tasks ?>)</span></h2> <ul> <li><a href="?controller=board&action=show&project_id=<?= $project['id'] ?>"><?= t('Back to the board') ?></a></li> + <li><a href="?controller=project&action=search&project_id=<?= $project['id'] ?>"><?= t('Search') ?></a></li> <li><a href="?controller=project&action=index"><?= t('List of projects') ?></a></li> - <?php if (Helper\is_admin()): ?> - <li><a href="?controller=project&action=create"><?= t('New project') ?></a></li> - <?php endif ?> </ul> </div> <section> @@ -19,6 +17,7 @@ <th><?= t('Column') ?></th> <th><?= t('Title') ?></th> <th><?= t('Assignee') ?></th> + <th><?= t('Due date') ?></th> <th><?= t('Date created') ?></th> <th><?= t('Date completed') ?></th> </tr> @@ -34,7 +33,14 @@ <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a> </td> <td> - <?= Helper\escape($task['username']) ?> + <?php if ($task['username']): ?> + <?= Helper\escape($task['username']) ?> + <?php else: ?> + <?= t('Unassigned') ?> + <?php endif ?> + </td> + <td> + <?= dt('%B %e, %G', $task['date_due']) ?> </td> <td> <?= dt('%B %e, %G at %k:%M %p', $task['date_creation']) ?> |