summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pytask/templates/task/view.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pytask/templates/task/view.html b/pytask/templates/task/view.html
index 4e4190c..2f3e081 100644
--- a/pytask/templates/task/view.html
+++ b/pytask/templates/task/view.html
@@ -62,7 +62,7 @@
Users working on this task:
{% for user in selected_users %}
- <a href="{% url view_profile user.id %}">{{user.username}}</a>
+ <a href="{% url view_user_profile user.id %}">{{user.username}}</a>
{% endfor %}
<br />
@@ -80,7 +80,7 @@
comments:<br /><br />
{% for comment in comments %}
- <a href="{% url view_profile comment.commented_by.id %}">
+ <a href="{% url view_user_profile comment.commented_by.id %}">
{{ comment.commented_by.username }}
</a>
on {{ comment.comment_datetime|date:"D d M Y"}} at