pytask/templates/task/confirm_textbook_approval.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 01 Feb 2011 02:31:53 +0530
changeset 540 b07d52d49db7
parent 431 fcc87a3f0311
permissions -rw-r--r--
Initial tags for the chapters should not contain Textbook as the keyword.

{% extends "base.html" %}

{% block content %}
You are about to approve the textbook 
<a href="{% url view_textbook textbook.id %}">{{textbook.name}}</a>
<br />

This action cannot be undone. Please confirm
<br /> <br />

<a href="{% url approve_textbook textbook.id %}">
  Yes, I approve the textbook
</a>
<br />

<a href="{% url view_textbook textbook.id %}">
  No, take me back to the textbook
</a>
<br />
{% endblock %}