pytask/templates/task/confirm_approval.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 05 Feb 2011 03:24:52 +0530
changeset 559 96e8e65a3738
parent 435 1217d808d70f
permissions -rw-r--r--
Display Pynts on task/textbook description page. Also make some style fixes.

{% extends "base.html" %}

{% block content %}
  You are about to approve the task <a href="{% url view_task task.id %}">
  {{task.title}}</a>
  <br />
  This action cannot be undone. Please confirm
  <br /><br />

<!--  <button class="green" type="submit" onclick="location.href='{% url approve_task task.id %}'">Approve</button>-->

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

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

{% endblock %}