diff options
author | Madhusudan.C.S | 2011-01-21 00:27:33 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2011-01-21 00:27:33 +0530 |
commit | 24eb3ad914db237427ff1eb8db8ae44092f1806a (patch) | |
tree | 9080a0d88174a3b6b20f7dc3e0142d9215af3183 | |
parent | 8d31b87ebb722045cc5afb27f122bf42ce7dc415 (diff) | |
download | pytask-24eb3ad914db237427ff1eb8db8ae44092f1806a.tar.gz pytask-24eb3ad914db237427ff1eb8db8ae44092f1806a.tar.bz2 pytask-24eb3ad914db237427ff1eb8db8ae44092f1806a.zip |
Use the right URL reverse name for selecting claimed user.
-rw-r--r-- | pytask/templates/task/claim.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pytask/templates/task/claim.html b/pytask/templates/task/claim.html index d4c375b..6204356 100644 --- a/pytask/templates/task/claim.html +++ b/pytask/templates/task/claim.html @@ -10,7 +10,7 @@ List of all the claims for the task <a href="{% url view_task task.id %}">{{task.title}}</a><br /> {% for claim in old_claims %} <hr /> - <a href="{% url view_user_profile claim.claimed_by.id %}">{{claim.claimed_by.username}}</a> + <a href="{% url view_user_profile claim.claimed_by.id %}"> {{ claim.claimed_by.username }}</a> on {{claim.claim_datetime|date:"D d M Y"}} at {{claim.claim_datetime|time:"H:i"}} wrote:<br /> {{claim.proposal|linebreaksbr}}<br /> {% endfor %} @@ -26,7 +26,7 @@ {% endif %} {% if old_claims and is_creator %} <hr /> - <a href="{% url select_task task.id %}">Select a user to assign the work</a> + <a href="{% url select_user task.id %}">Select a user to assign the work</a> {% endif %} {% if can_claim %} |