Belote/templates/game.html
2020-04-25 12:08:19 +02:00

22 lines
509 B
HTML

{% extends "base.html" %}
{% block title %} Jeu {% endblock %}
{% block titre %} Jeu {{ game.name }} {% endblock %}
{% block head %}
{% include ['scripts-perso.html', 'scripts.html'] %}
{% endblock %}
{% block contenu %}
{% include "game_zone_jeu.html" %}
{% endblock %}
{% block script %}
<script type="text/javascript" charset="utf-8">
var None = null;
var jeu = {{ game.serialize_state(user)|safe }};
</script>
<script src="/static/game_script.js" charset="utf-8"></script>
{% endblock %}