diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-24 22:51:30 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-24 22:51:30 -0400 |
commit | 90e06162999c8ec7fa9bcfa391800f7907419d9b (patch) | |
tree | f0f8d4a760f25c4f7773e0a1851031db6b08b9f2 /app/Templates/task_table.php | |
parent | 180efb962c6fc4da47ed39e60db137d63ffaad5b (diff) |
Rename Locales and Templates folders to be more consistent
Diffstat (limited to 'app/Templates/task_table.php')
-rw-r--r-- | app/Templates/task_table.php | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/app/Templates/task_table.php b/app/Templates/task_table.php deleted file mode 100644 index fa04fa55..00000000 --- a/app/Templates/task_table.php +++ /dev/null @@ -1,56 +0,0 @@ -<table> - <tr> - <th><?= Helper\order(t('Id'), 'tasks.id', $pagination) ?></th> - <th><?= Helper\order(t('Column'), 'tasks.column_id', $pagination) ?></th> - <th><?= Helper\order(t('Category'), 'tasks.category_id', $pagination) ?></th> - <th><?= Helper\order(t('Title'), 'tasks.title', $pagination) ?></th> - <th><?= Helper\order(t('Assignee'), 'users.username', $pagination) ?></th> - <th><?= Helper\order(t('Due date'), 'tasks.date_due', $pagination) ?></th> - <th><?= Helper\order(t('Date created'), 'tasks.date_creation', $pagination) ?></th> - <th><?= Helper\order(t('Date completed'), 'tasks.date_completed', $pagination) ?></th> - <th><?= Helper\order(t('Status'), 'tasks.is_active', $pagination) ?></th> - </tr> - <?php foreach ($tasks as $task): ?> - <tr> - <td class="task-table 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> - <?= Helper\in_list($task['category_id'], $categories, '') ?> - </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['assignee_username']): ?> - <?= Helper\escape($task['assignee_name'] ?: $task['assignee_username']) ?> - <?php else: ?> - <?= t('Unassigned') ?> - <?php endif ?> - </td> - <td> - <?= dt('%B %e, %Y', $task['date_due']) ?> - </td> - <td> - <?= dt('%B %e, %Y at %k:%M %p', $task['date_creation']) ?> - </td> - <td> - <?php if ($task['date_completed']): ?> - <?= dt('%B %e, %Y 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> - -<?= Helper\paginate($pagination) ?> |