pytask/templates/task/confirm_textbook_approval.html
changeset 431 fcc87a3f0311
parent 417 b37e541bf950
--- a/pytask/templates/task/confirm_textbook_approval.html	Sun Jan 16 23:16:21 2011 +0530
+++ b/pytask/templates/task/confirm_textbook_approval.html	Sun Jan 16 23:17:13 2011 +0530
@@ -1,8 +1,20 @@
-{% extends 'base.html' %}
+{% 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 />
+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 />
+<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 %}