Tap symbol! (Poorly)

This commit is contained in:
Correl Roush 2010-09-22 00:52:00 -04:00
parent f358941909
commit 80516e21d5
2 changed files with 20 additions and 15 deletions

View file

@ -13,6 +13,8 @@ def prettify_mana(text):
if not match: if not match:
break break
text = text[:match.start()] + render_to_string('cards/manacost.html', {'cost': ManaCost(str(match.group(0)))}) + text[match.end():] text = text[:match.start()] + render_to_string('cards/manacost.html', {'cost': ManaCost(str(match.group(0)))}) + text[match.end():]
text = text.replace('{T}', render_to_string('cards/manacost.html', {'cost': 'T'}))
return text return text

View file

@ -1,17 +1,20 @@
{% load get_range %} {% load get_range %}
{% if cost == 'T' %}
{% if cost.x %}<span class="mana symbol">X</span>{% endif %} <span class="mana symbol">&#x21b7;</span>
{% if cost.y %}<span class="mana symbol">Y</span>{% endif %} {% else %}
{% if cost.z %}<span class="mana symbol">Z</span>{% endif %} {% if cost.x %}<span class="mana symbol">X</span>{% endif %}
{% if cost.any > 0 or cost.converted == 0 %} {% if cost.y %}<span class="mana symbol">Y</span>{% endif %}
<span class="mana symbol">{{ cost.any }}</span> {% if cost.z %}<span class="mana symbol">Z</span>{% endif %}
{% endif %} {% if cost.any > 0 or cost.converted == 0 %}
{% for i in cost.snow|get_range %} <span class="mana symbol">{{ cost.any }}</span>
{# use the unicode snowflake symbol #} {% endif %}
<span class="mana symbol">&#x2744;</span> {% for i in cost.snow|get_range %}
{% endfor %} {# use the unicode snowflake symbol #}
{% for type, mana in cost.mana.mana.items %} <span class="mana symbol">&#x2744;</span>
{% for i in mana|get_range %}
<span class="mana symbol {{ type }}"></span>
{% endfor %} {% endfor %}
{% endfor %} {% for type, mana in cost.mana.mana.items %}
{% for i in mana|get_range %}
<span class="mana symbol {{ type }}"></span>
{% endfor %}
{% endfor %}
{% endif %}