1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/templates/game.html
2018-06-13 23:32:26 +02:00

16 lines
No EOL
337 B
HTML

{% extends 'base.html' %}
{% block pagetitle %}
{{ game_name }}
{% endblock %}
{% block body %}
<h1>
Royal Games su {{ game_name }}
</h1>
{% for mini in minis %}
{% with record = mini %}
{% include "minis/" + game_short_name + ".html" %}
{% endwith %}
{% endfor %}
{% endblock %}