pytask/templates/task/view_work.html
changeset 417 b37e541bf950
parent 382 daca865314e7
child 431 fcc87a3f0311
--- a/pytask/templates/task/view_work.html	Sat Jan 15 21:21:19 2011 +0530
+++ b/pytask/templates/task/view_work.html	Sat Jan 15 21:21:49 2011 +0530
@@ -10,14 +10,14 @@
 {% for rep in old_reports %}
 <tr>
 	<td>{{rep.submitted_by}}</td>
-	<td><a href="/task/view/report/rid={{rep.uniq_key}}">{{rep.data}}</a></td>
+	<td><a href="{% url view_report rep.id %}">{{rep.data}}</a></td>
 	<td><a href="{{rep.attachment.url}}">{{rep.attachment.name}}</a> </td>
 </tr>
 {% endfor %}
 </table>
 {% endif %}
 {% if is_working %}
-<a href="/task/submit/report/tid={{task.uniq_key}}">Submit report</a>
+<a href="{% url submit_report rep.id %}">Submit report</a>
 <hr />
 {% endif %}
 {% endblock %}