pytask/templates/task/confirm_approval.html
changeset 417 b37e541bf950
parent 374 cdd8026ee60e
child 431 fcc87a3f0311
equal deleted inserted replaced
416:265dbd81c451 417:b37e541bf950
     1 {% extends 'base.html' %}
     1 {% extends 'base.html' %}
     2 {% block content %}
     2 {% block content %}
     3 You are about to approve the task <a href="/task/view/tid={{task.uniq_key}}">{{task.title}}</a><br />
     3 You are about to approve the task <a href="{% url view_task task.id %}">{{task.title}}</a><br />
     4 This action cannot be undone. Please confirm <br /> <br />
     4 This action cannot be undone. Please confirm <br /> <br />
     5 
     5 
     6 <a href="/task/approved/tid={{task.uniq_key}}">Yes, I approve the task</a><br />
     6 <a href="{% url approve_task task.id %}">Yes, I approve the task</a><br />
     7 <a href="/task/view/tid={{task.uniq_key}}">No, take me back to the task</a> <br />
     7 <a href="{% url view_task task.id %}">No, take me back to the task</a> <br />
     8 {% endblock %}
     8 {% endblock %}