mtg-web/templates/analyzer/card_list.html

10 lines
195 B
HTML
Raw Normal View History

2010-09-21 05:49:22 +00:00
{% extends "main.html" %}
{% block content %}
<h2>Cards</h2>
<ul>
{% for card in object_list %}
<li>{{ card.name }}</li>
{% endfor %}
</ul>
{% endblock %}