{% extends "base.html" %} {% load meta_extras %} {% load url from future %} {% block jumbotron %}

How good is your deck?

Curious how decks like yours have performed in tournaments?
Paste your ponyhead.com URL here and find out!

{% csrf_token %}

{% endblock %} {% block content %}

Deck archetypes

Very fuzzy data, based on past tournaments. The more the deck was played in tournaments, the more accurate this is.

{% load humanize %} {% for avg, label, decks in ranking %} {% endfor %}
Average placement Example decks
{{ avg|ordinal }}

Tournaments

{% if tournaments %} {% for t in tournaments %} {% endfor %} {% endif %}
Date Name Top Decks
{{ t.tournament.date }} {{ t.tournament.name }} {% for placement, d in t.decklists|slice:":8" %} {{ placement|ordinal }} {{ d.name }} ({{ d.description }})
{% endfor %}
{% endblock %} {% block jumbotron_end %} {% endblock %}