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