16 lines
546 B
HTML
16 lines
546 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Delete Supplier" %}{% endblock title %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>{% trans "Delete Supplier" %}</h1>
|
|
<p>{% trans "Are you sure you want to delete this supplier?" %}</p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button class="btn btn-sm btn-danger" type="submit">{% trans "Delete" %}</button>
|
|
<a class="btn btn-sm btn-secondary" href="{% url 'supplier_list' %}">{% trans "Cancel" %}</a>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|