mtg-web/templates/decks/index.html

19 lines
420 B
HTML
Raw Normal View History

2010-09-21 05:49:22 +00:00
{% extends "main.html" %}
2010-09-22 01:37:00 +00:00
{% load math %}
2010-09-21 05:49:22 +00:00
{% block content %}
<h2>Decks</h2>
<ul>
{% for deck in decks %}
2010-09-22 01:37:00 +00:00
<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>
2010-09-21 05:49:22 +00:00
{% endblock %}