progress on conversion to tailwind

This commit is contained in:
badblocks 2025-03-06 21:28:36 -08:00
parent 6a872124c6
commit 6e2843c60e
110 changed files with 4997 additions and 1691 deletions

View file

@ -0,0 +1,47 @@
{% extends 'base.html' %}
{% block title %}Delete or Close Trade Offer{% endblock title %}
{% block content %}
<div class="container mx-auto max-w-md mt-6">
<h2 class="text-2xl font-bold mb-4">
{% if action == 'delete' %}
Delete Trade Offer
{% elif action == 'close' %}
Close Trade Offer
{% else %}
Delete/Close Trade Offer
{% endif %}
</h2>
{% if messages %}
{% for message in messages %}
<div class="alert {{ message.tags }}">{{ message }}</div>
{% endfor %}
{% endif %}
<p class="mb-4">
{% 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 %}
</p>
<form method="post" class="space-x-4">
{% csrf_token %}
{% if action %}
{% if action == 'delete' %}
<button type="submit" class="btn btn-error">Confirm Delete</button>
{% elif action == 'close' %}
<button type="submit" class="btn btn-warning">Confirm Close Trade Offer</button>
{% endif %}
{% else %}
<button type="submit" class="btn btn-error" disabled>Cannot Delete/Close Trade Offer</button>
{% endif %}
<a href="{% url 'trade_offer_list' %}" class="btn btn-secondary">Cancel</a>
</form>
</div>
{% endblock content %}