diff --git a/belote.py b/belote.py
index 1794312..eaad8a4 100644
--- a/belote.py
+++ b/belote.py
@@ -313,7 +313,8 @@ def see_game(roomid):
if game is None:
return flask.redirect('/games')
if fll.current_user.level >= levels_users['Can manage games'] or game.authorized(fll.current_user) and game.turn==N_TURN*N_PLAYERS:
- return game.serialize_state_anonymous()
+ #return game.serialize_state_anonymous()
+ return flask.render_template('game_see.html', user=fll.current_user, game=game, serialized=game.serialize_state_anonymous())
return flask.redirect(URL_DEFAULT)
@app.route('/admin/games/new', methods=['GET', 'POST'])
diff --git a/templates/game_see.html b/templates/game_see.html
new file mode 100644
index 0000000..25779d6
--- /dev/null
+++ b/templates/game_see.html
@@ -0,0 +1,45 @@
+{% extends "base.html" %}
+
+{% block title %} Jeu {% endblock %}
+
+{% block titre %} Jeu {{ game.name }} {% endblock %}
+
+
+{% block contenu %}
+
+
+ {% if game.start %}
+
+ {% endif %}
+
+
+{% endblock %}
+
diff --git a/templates/games.html b/templates/games.html
index f7db75f..6380572 100644
--- a/templates/games.html
+++ b/templates/games.html
@@ -6,6 +6,7 @@
{% block contenu %}
+
{% if cancreategames %}