mtg-web/templates/decks/detail.html

7 lines
210 B
HTML
Raw Normal View History

<h2>{{deck}}</h2>
<ul>
{% for card in deck.included_set.all %}
<li>{{card.count}}x <a href="{% url mtgweb.cards.views.display name=card.card.name %}">{{ card.card }}</a></li>
{% endfor %}
</ul>