1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{% extends "base.html" %} {% block content %} <div class="greybox"> <h2>Confirm Delete</h2> <hr /> <form method="post" action="."> <table> <tr> <td>Are You Sure?</td> <td> <input name="delete" type="submit" value=" Yes " /></td> </tr> </table> </form> </div> {% endblock %}