19 lines
643 B
HTML
19 lines
643 B
HTML
<!-- templates/purchase_orders/po_confirm_delete.html -->
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Confirm Delete - {{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-4">
|
|
<h2>Confirm Deletion</h2>
|
|
<p>Are you sure you want to delete the Purchase Order <strong>"{{ po.po_number }}"</strong>?</p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button type="submit" class="btn btn-phoenix-danger">Yes, Delete</button>
|
|
<a href="{% url 'purchase_order_detail' po.id %}" class="btn btn-phoenix-secondary">Cancel</a>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |