1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/event/task_update.php

16 lines
581 B
PHP
Raw Normal View History

2015-08-16 17:04:56 +02:00
<?= $this->user->avatar($email, $author) ?>
2015-04-21 17:56:16 +02:00
2014-10-22 19:59:09 +02:00
<p class="activity-title">
2015-01-16 14:23:05 +01:00
<?= e('%s updated the task %s',
$this->e($author),
2015-08-16 17:04:56 +02:00
$this->url->link(t('#%d', $task['id']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']))
2015-01-16 14:23:05 +01:00
) ?>
2014-10-22 19:59:09 +02:00
</p>
<p class="activity-description">
2015-01-16 14:23:05 +01:00
<em><?= $this->e($task['title']) ?></em>
2015-08-16 17:04:56 +02:00
<?php if (isset($changes)): ?>
<div class="activity-changes">
<?= $this->render('task/changes', array('changes' => $changes, 'task' => $task)) ?>
</div>
<?php endif ?>
2014-10-22 19:59:09 +02:00
</p>