pytask/templates/task/confirm_approval.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 15 Jan 2011 21:21:49 +0530
changeset 417 b37e541bf950
parent 374 cdd8026ee60e
child 431 fcc87a3f0311
permissions -rw-r--r--
Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.

{% extends 'base.html' %}
{% block content %}
You are about to approve the task <a href="{% url view_task task.id %}">{{task.title}}</a><br />
This action cannot be undone. Please confirm <br /> <br />

<a href="{% url approve_task task.id %}">Yes, I approve the task</a><br />
<a href="{% url view_task task.id %}">No, take me back to the task</a> <br />
{% endblock %}