initial commit
[ochimeru.git] / cards / templates / level.html
blob5e1c57d4cd6318664d1796b3240a5d72b85fc449
1 {% extends "base.html" %}
3 {% block content %}
4 <h2>Select your Level</h2>
5 {% for l in levels %}
6 <div class="button">
7 <a href="/level/{{ l }}/">{{ l }}</a>
8 </div>
9 {% endfor %}
10 </ul>
12 {% endblock %}