Tap symbol! (Poorly)
This commit is contained in:
parent
f358941909
commit
80516e21d5
2 changed files with 20 additions and 15 deletions
|
@ -13,6 +13,8 @@ def prettify_mana(text):
|
|||
if not match:
|
||||
break
|
||||
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
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{% load get_range %}
|
||||
|
||||
{% if cost == 'T' %}
|
||||
<span class="mana symbol">↷</span>
|
||||
{% else %}
|
||||
{% if cost.x %}<span class="mana symbol">X</span>{% endif %}
|
||||
{% if cost.y %}<span class="mana symbol">Y</span>{% endif %}
|
||||
{% if cost.z %}<span class="mana symbol">Z</span>{% endif %}
|
||||
|
@ -15,3 +17,4 @@
|
|||
<span class="mana symbol {{ type }}"></span>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue