Files
toptrumps/templates/cards/_cards_list.html
T
2025-12-04 21:01:45 +00:00

9 lines
197 B
HTML

{% load static %}
<div class="grid">
{% for card in cards %}
{% include 'cards/_card_item.html' with card=card %}
{% empty %}
<p>No dinosaurs yet — add one!</p>
{% endfor %}
</div>