mtg-web/templates/decks/index.html

21 lines
522 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>
<div class="manabar">
{% for color, count in deck.colors.0.items %}
2010-09-22 01:37:00 +00:00
{% if count > 0 %}
<span class="mana {{ color }}" style="width: {{ count|mult:100|div:deck.colors.1 }}%"></span>
2010-09-22 01:37:00 +00:00
{% endif %}
{% endfor %}
</div>
<a href="{% url mtgweb.decks.views.detail deck.id %}">{{ deck }}</a>
2010-09-22 01:37:00 +00:00
</li>
{% endfor %}
</ul>
2010-09-21 05:49:22 +00:00
{% endblock %}