summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhusudan.C.S2011-01-20 06:02:34 +0530
committerMadhusudan.C.S2011-01-20 06:02:34 +0530
commit58d36009baaf2701c64f1685017a1296ed08252b (patch)
tree401759953b7840c0058a96d3c9213e5b249151de
parent9855eed85ed34cc5f4955822e3218935a516eab9 (diff)
downloadpytask-58d36009baaf2701c64f1685017a1296ed08252b.tar.gz
pytask-58d36009baaf2701c64f1685017a1296ed08252b.tar.bz2
pytask-58d36009baaf2701c64f1685017a1296ed08252b.zip
Use the right url reverse name for profile views.
-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