pytask/templates/task/confirm_approval.html
author Nishanth Amuluru <nishanth@fossee.in>
Wed, 12 Jan 2011 00:22:27 +0530
changeset 149 32dd15eaf9d0
parent 136 cdd8026ee60e
permissions -rw-r--r--
fixed a bug where guest users were not able to view the page correctly

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

<a href="/task/approved/tid={{task.uniq_key}}">Yes, I approve the task</a><br />
<a href="/task/view/tid={{task.uniq_key}}">No, take me back to the task</a> <br />
{% endblock %}