diff options
Diffstat (limited to 'app/Template/event/task_assignee_change.php')
-rw-r--r-- | app/Template/event/task_assignee_change.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/Template/event/task_assignee_change.php b/app/Template/event/task_assignee_change.php new file mode 100644 index 00000000..b346325e --- /dev/null +++ b/app/Template/event/task_assignee_change.php @@ -0,0 +1,12 @@ +<p class="activity-title"> + <?= e( + '%s change the assignee of the task <a href="?controller=task&action=show&task_id=%d">#%d</a> to %s', + Helper\escape($author), + $task_id, + $task_id, + Helper\escape($task['assignee_name'] ?: $task['assignee_username']) + ) ?> +</p> +<p class="activity-description"> + <em><?= Helper\escape($task['title']) ?></em> +</p>
\ No newline at end of file |