pytask/templates/task/confirm_textbook_approval.html
changeset 431 fcc87a3f0311
parent 417 b37e541bf950
equal deleted inserted replaced
430:a11a778fca54 431:fcc87a3f0311
     1 {% extends 'base.html' %}
     1 {% extends "base.html" %}
       
     2 
     2 {% block content %}
     3 {% block content %}
     3 You are about to approve the textbook <a href="{% url view_textbook textbook.id %}">{{textbook.name}}</a><br />
     4 You are about to approve the textbook 
     4 This action cannot be undone. Please confirm <br /> <br />
     5 <a href="{% url view_textbook textbook.id %}">{{textbook.name}}</a>
       
     6 <br />
     5 
     7 
     6 <a href="{% url approve_textbook textbook.id %}">Yes, I approve the textbook</a><br />
     8 This action cannot be undone. Please confirm
     7 <a href="{% url view_textbook textbook.id %}">No, take me back to the textbook</a> <br />
     9 <br /> <br />
       
    10 
       
    11 <a href="{% url approve_textbook textbook.id %}">
       
    12   Yes, I approve the textbook
       
    13 </a>
       
    14 <br />
       
    15 
       
    16 <a href="{% url view_textbook textbook.id %}">
       
    17   No, take me back to the textbook
       
    18 </a>
       
    19 <br />
     8 {% endblock %}
    20 {% endblock %}