18 lines
741 B
HTML
18 lines
741 B
HTML
<!-- templates/purchase_orders/po_confirm_delete.html -->
|
|
{% extends "base.html" %}
|
|
{% block title %}{% trans "Confirm Delete"%} - {{ block.super }}{% endblock %}
|
|
{% block content %}
|
|
<div class="container mt-4">
|
|
<h2>{% trans "Confirm Deletion" %}</h2>
|
|
<p>
|
|
{% trans "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">{% trans "Yes, Delete" %}</button>
|
|
<a href="{% url 'purchase_order_detail' po.id %}"
|
|
class="btn btn-phoenix-secondary">{% trans "Cancel" %}</a>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|