Initial working version with minor bugs
This commit is contained in:
parent
f946e4933a
commit
71b3993326
83 changed files with 34485 additions and 173 deletions
14
templates/trades/trade_offer_delete.html
Normal file
14
templates/trades/trade_offer_delete.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue