summaryrefslogtreecommitdiff
path: root/templates/task/view.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/task/view.html')
-rw-r--r--templates/task/view.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/task/view.html b/templates/task/view.html
index ebeacca..2343b20 100644
--- a/templates/task/view.html
+++ b/templates/task/view.html
@@ -20,8 +20,12 @@
<br />{{ task.desc }}<br />
<hr>
status of task is {{task.status}}<br />
- {% if assigned_user %}
- Task has been assigned to <a href="/user/view/uid={{assigned_user.id}}">{{assigned_user.username}}</a><br />
+ {% if assigned_users %}
+ Users working on this task:
+ {% for user in assigned_users %}
+ <a href="/user/view/uid={{user.id}}">{{user.username}}</a>|
+ {% endfor %}
+ <br />
{% endif %}
{% if not is_guest %}
<a href="/task/claim/tid={{task.id}}">View claims</a><br />