mtg-web/templates/decks/index.html
2010-09-21 21:37:00 -04:00

18 lines
420 B
HTML
Executable file

{% extends "main.html" %}
{% load math %}
{% block content %}
<h2>Decks</h2>
<ul>
{% for deck in decks %}
<li>
<a href="{% url mtgweb.decks.views.detail deck.id %}">{{ deck }}</a>
{% for color, count in deck.colors.items %}
{% if count > 0 %}
<span class="mana {{ color }}"></span>
{% endif %}
{% endfor %}
</li>
{% endfor %}
</ul>
{% endblock %}