delete_product.html 578 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{% extends 'pos_base.html' %}

{% block content %}

<div class="container py-5">
<form align='center' action='.' method='POST'>{% csrf_token %}

<h5 class='text-primary'>ยืนยันการลบ</h5>     
<p>
สินค้ารหัส {{object.product_id}} ชื่อสินค้า {{object.name}}
</p>
        <button type="submit" class="btn btn-outline-danger mx-5"  >ยืนยัน</button>  
        <a href='{% url "show_product" %}'><button type="button" class="btn btn-outline-info mx-5" >ปิด</button></a>


</form>
</div>

{% endblock %}