Skip to content
Permalink
5cb1253178
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (16 sloc) 453 Bytes
{% extends 'shoppingCart/store_dashBoard.html' %}
{% block content %}
<br>
<div class="row">
<div class="col-md-6">
<div class="card card-body">
<p>Are you sure you want to delete "{{item}}"?</p>
<form action="" method="post">
{% csrf_token %}
<a class="btn btn-warning" href="{{request.META.HTTP_REFERER}}">Go back</a>
<input class="btn btn-danger" type="submit"/>
</form>
</div>
</div>
</div>
{% endblock content %}