delete_confirm.html 372 B

1234567891011121314151617
  1. {% extends "pbp_store/admin_base.html" %}
  2. {% load url from future %}
  3. {% block body %}
  4. <h2>Confirm Delete</h2>
  5. <p>Are you sure you want to delete {{item.title}}?<p>
  6. <div>
  7. <form action="" method="post">{% csrf_token %}
  8. <button type="submit" class="btn btn-primary">Yes, Delete</button>
  9. <a href="{% url 'catalog_list' %}">Cancel</a>
  10. </form>
  11. </div>
  12. {% endblock %}