diff options
Diffstat (limited to 'app/Templates/board_public.php')
-rw-r--r-- | app/Templates/board_public.php | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/app/Templates/board_public.php b/app/Templates/board_public.php new file mode 100644 index 00000000..0808079e --- /dev/null +++ b/app/Templates/board_public.php @@ -0,0 +1,79 @@ +<section id="main" class="public-board"> + + <?php if (empty($columns)): ?> + <p class="alert alert-error"><?= t('There is no column in your project!') ?></p> + <?php else: ?> + <table id="board"> + <tr> + <?php $column_with = round(100 / count($columns), 2); ?> + <?php foreach ($columns as $column): ?> + <th width="<?= $column_with ?>%"> + <?= Helper\escape($column['title']) ?> + <?php if ($column['task_limit']): ?> + <span title="<?= t('Task limit') ?>" class="task-limit">(<?= Helper\escape(count($column['tasks']).'/'.$column['task_limit']) ?>)</span> + <?php endif ?> + </th> + <?php endforeach ?> + </tr> + <tr> + <?php foreach ($columns as $column): ?> + <td class="column <?= $column['task_limit'] && count($column['tasks']) > $column['task_limit'] ? 'task-limit-warning' : '' ?>"> + <?php foreach ($column['tasks'] as $task): ?> + <div class="task task-<?= $task['color_id'] ?>"> + + #<?= $task['id'] ?> - + + <span class="task-user"> + <?php if (! empty($task['owner_id'])): ?> + <?= t('Assigned to %s', $task['username']) ?> + <?php else: ?> + <span class="task-nobody"><?= t('Nobody assigned') ?></span> + <?php endif ?> + </span> + + <?php if ($task['score']): ?> + <span class="task-score"><?= Helper\escape($task['score']) ?></span> + <?php endif ?> + + <div class="task-title"> + <?= Helper\escape($task['title']) ?> + </div> + + <?php if ($task['category_id']): ?> + <div class="task-category-container"> + <span class="task-category"> + <?= Helper\in_list($task['category_id'], $categories) ?> + </span> + </div> + <?php endif ?> + + <?php if (! empty($task['date_due']) || ! empty($task['nb_comments']) || ! empty($task['description'])): ?> + <div class="task-footer"> + + <?php if (! empty($task['date_due'])): ?> + <div class="task-date"> + <?= dt('%B %e, %G', $task['date_due']) ?> + </div> + <?php endif ?> + + <div class="task-icons"> + <?php if (! empty($task['nb_comments'])): ?> + <?= $task['nb_comments'] ?> <i class="fa fa-comment-o" title="<?= p($task['nb_comments'], t('%d comment', $task['nb_comments']), t('%d comments', $task['nb_comments'])) ?>"></i> + <?php endif ?> + + <?php if (! empty($task['description'])): ?> + <i class="fa fa-file-text-o" title="<?= t('Description') ?>"></i> + <?php endif ?> + </div> + </div> + <?php endif ?> + + </div> + <?php endforeach ?> + </td> + <?php endforeach ?> + </tr> + </table> + <?php endif ?> + +</section>
\ No newline at end of file |