{% extends 'base.html' %} {% block title %}Delete or Close Trade Offer{% endblock title %} {% block content %}

{% if action == 'delete' %} Delete Trade Offer {% elif action == 'close' %} Close Trade Offer {% else %} Delete/Close Trade Offer {% endif %}

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}

{% if action == 'delete' %} Are you sure you want to delete this trade offer? This will permanently remove the offer. {% elif action == 'close' %} Are you sure you want to close this trade offer? It will remain in the system as closed. {% else %} This trade offer cannot be deleted or closed because there are active acceptances. {% endif %}

{% csrf_token %} {% if action %} {% if action == 'delete' %} {% elif action == 'close' %} {% endif %} {% else %} {% endif %} Cancel
{% endblock content %}