diff options
author | Madhusudan.C.S | 2011-01-20 06:02:34 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2011-01-20 06:02:34 +0530 |
commit | 58d36009baaf2701c64f1685017a1296ed08252b (patch) | |
tree | 401759953b7840c0058a96d3c9213e5b249151de | |
parent | 9855eed85ed34cc5f4955822e3218935a516eab9 (diff) | |
download | pytask-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.html | 4 |
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 |