{% extends "game.html" %} {% block game_header %}
Team: {{ player.team|title }} | Role: {{ player.role_string }}
{% if player.is_spy and not player.is_oberon %}Other spies: {% for spy in visible_spies %} {% if spy != player %} {{ spy.name }} {% endif %} {% endfor %}
{% endif %} {% if player.is_merlin %}The spies {% if game_has_mordred %}(except Mordred){% endif %} are: {% for spy in visible_spies %} {{ spy.name }} {% endfor %}
{% endif %} {% if player.is_percival %}Merlin is {{ possible_merlins }}.
{% endif %} {% if player.is_assassin %}Try to see if you can spot who the Merlin is. You'll have a chance to identify him at the end of the game to win it.
{% endif %} {% if player.is_morgana %}Percival sees you as Merlin.
{% endif %} {% if player.is_mordred %}Merlin does not know you are a spy.
{% endif %}