Belote/templates/game.html

22 lines
509 B
HTML
Raw Permalink Normal View History

2020-04-25 10:08:19 +00:00
{% 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 %}