10 lines
No EOL
408 B
HTML
10 lines
No EOL
408 B
HTML
{% load trade_offer_tags %}
|
|
{% if offered_cards or wanted_cards %}
|
|
<hr class="my-8 border-t border-gray-200">
|
|
<h2 class="text-2xl font-bold mb-4">Results</h2>
|
|
{% if search_results and search_results.object_list %}
|
|
{% include "trades/_trade_offer_list.html" with offers=search_results %}
|
|
{% else %}
|
|
<div class="alert alert-info mt-4">No trade offers found.</div>
|
|
{% endif %}
|
|
{% endif %} |