10 lines
No EOL
372 B
HTML
10 lines
No EOL
372 B
HTML
{% load trade_offer_tags %}
|
|
{% if have_cards or want_cards %}
|
|
<hr class="my-8 border-t border-base-300">
|
|
<h2 class="text-2xl font-bold mb-4">Results</h2>
|
|
{% if search_results %}
|
|
{% 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 %} |