{% extends 'base.html' %} {% block title %}Delete or Close Trade Offer{% endblock title %} {% block content %}
Status: {% if object.is_active %}Open{% else %}Closed{% endif %}
{% if messages %} {% for message in messages %} {% 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 %}