14 lines
434 B
HTML
14 lines
434 B
HTML
{% extends '_base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}Delete Trade Offer{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h2>Delete Trade Offer</h2>
|
|
<p>Are you sure you want to delete this trade offer?</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button type="submit" class="btn btn-danger">Confirm Delete</button>
|
|
<a href="{% url 'trade_offer_list' %}" class="btn btn-secondary">Cancel</a>
|
|
</form>
|
|
{% endblock content %}
|