mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
30 lines
No EOL
1.1 KiB
PHP
30 lines
No EOL
1.1 KiB
PHP
<div class="task-board color-<?= $task['color_id'] ?> <?= $task['date_modification'] > time() - $board_highlight_period ? 'task-board-recent' : '' ?>">
|
|
|
|
<?= $this->a('#'.$task['id'], 'task', 'readonly', array('task_id' => $task['id'], 'token' => $project['token'])) ?>
|
|
|
|
<?php if ($task['reference']): ?>
|
|
<span class="task-board-reference" title="<?= t('Reference') ?>">
|
|
(<?= $task['reference'] ?>)
|
|
</span>
|
|
<?php endif ?>
|
|
|
|
-
|
|
|
|
<span class="task-board-user">
|
|
<?php if (! empty($task['owner_id'])): ?>
|
|
<?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?>
|
|
<?php else: ?>
|
|
<span class="task-board-nobody"><?= t('Nobody assigned') ?></span>
|
|
<?php endif ?>
|
|
</span>
|
|
|
|
<?php if ($task['score']): ?>
|
|
<span class="task-score"><?= $this->e($task['score']) ?></span>
|
|
<?php endif ?>
|
|
|
|
<div class="task-board-title">
|
|
<?= $this->a($this->e($task['title']), 'task', 'readonly', array('task_id' => $task['id'], 'token' => $project['token'])) ?>
|
|
</div>
|
|
|
|
<?= $this->render('board/task_footer', array('task' => $task, 'categories' => $categories)) ?>
|
|
</div>
|