diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-28 18:23:21 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-28 18:23:21 -0400 |
commit | 33f9cdbc976e0f97c3dd24658dc7d0097497c6d7 (patch) | |
tree | 3a5dc8ca9a6b3db268ba95aec357a2e5a8aad80e /app/Templates/task_details.php | |
parent | 03fa01ac7b036820ee232d893ec63241918c6012 (diff) |
Add support for Github Issue Webhooks
Diffstat (limited to 'app/Templates/task_details.php')
-rw-r--r-- | app/Templates/task_details.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/Templates/task_details.php b/app/Templates/task_details.php index 018b88f3..8766beac 100644 --- a/app/Templates/task_details.php +++ b/app/Templates/task_details.php @@ -4,6 +4,11 @@ <span class="task-score"><?= Helper\escape($task['score']) ?></span> <?php endif ?> <ul> + <?php if ($task['reference']): ?> + <li> + <strong><?= t('Reference: %s', $task['reference']) ?></strong> + </li> + <?php endif ?> <li> <?= dt('Created on %B %e, %Y at %k:%M %p', $task['date_creation']) ?> </li> |