pytask/templates/task/confirm_approval.html
author Nishanth Amuluru <nishanth@fossee.in>
Tue, 11 Jan 2011 01:03:04 +0530
changeset 136 cdd8026ee60e
permissions -rw-r--r--
task approval is fine now
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
136
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
You are about to approve the task <a href="/task/view/tid={{task.uniq_key}}">{{task.title}}</a><br />
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
This action cannot be undone. Please confirm <br /> <br />
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
<a href="/task/approved/tid={{task.uniq_key}}">Yes, I approve the task</a><br />
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
<a href="/task/view/tid={{task.uniq_key}}">No, take me back to the task</a> <br />
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
{% endblock %}