{% extends "main.html" %} {% load get_range %} {% load math %} {% block title %}Deck: {{ deck.name }}{% endblock %} {% block content %}

{{deck}}

Mana

Lands

Symbols

Curve

{% for cost, count in curve.items %} {% endfor %}
{{ cost }}
{{ count }}

Ramp

{% for turn in deck.ramp %} {% endfor %}
Turn {{ turn.turn }} {{ turn.probability }}%

Cards

{% regroup deck.get_cards by card.type as cards %}
{% endblock %}