{% extends "simpl/base.html" %} {% load static %} {% load i18n %} {% load includecontents %} {% block main_wrap_classes %}v-nav-page-layout{% endblock %} {% block page_header %} {% endblock page_header %} {% block content_inner %}
{% if not players and not inactive_players and not invites %}

No players found.

{% endif %} {% if run.status >= run.STATUS.PLAY %}
{% if players or inactive_players%}

Active Players ({{ players|length }}{% if players|length != players_count %}/{{ players_count }}{% endif %})

{% include "simpl/includes/players_list/list_header_togglers.html" %}
{% endif %} {% if run.multiplayer %} {% for team, team_players in teams.items %}

{{ team }}

{% for player in team_players %} {% include "simpl/includes/players_list/multiplayer_in_play.html" %} {% endfor %}
{% endfor %} {% else %}{% comment %} Single player {% endcomment %}
{% for player in players %} {% include "simpl/includes/players_list/singleplayer_in_play.html" %} {% endfor %}
{% endif %}
{% else %}{% comment %} Setup {% endcomment %}
{% if players or inactive_players %}

Ready to Play ({{ players|length }}{% if players|length != players_count %}/{{ players_count }}{% endif %})

{% include "simpl/includes/players_list/list_header_togglers.html" %}
{% endif %} {% if run.multiplayer %} {% for team, team_players in teams.items %}

{{ team }}

{% for player in team_players %} {% include "simpl/includes/players_list/active_player_in_setup.html" %} {% endfor %}
{% endfor %} {% else %}{% comment %} Single player {% endcomment %}
{% for player in players %} {% include "simpl/includes/players_list/active_player_in_setup.html" %} {% endfor %}
{% endif %}
{% endif %} {% if inactive_players %}

Inactive Players ({{ inactive_players|length }}{% if inactive_players|length != inactive_count %}/{{ inactive_count }}{% endif %})

{% for player in inactive_players %} {% include "simpl/includes/players_list/inactive_player.html" %} {% endfor %}
{% endif %}{% comment %} Inactive {% endcomment %} {% if invites %}

Invites Sent ({{ invites|length }}{% if invites|length != invites_count %}/{{ invites_count }}{% endif %})

{% for player in invites %} {% include "simpl/includes/players_list/invite.html" %} {% endfor %}
{% endif %}{% comment %} Invites {% endcomment %}
{% if inactive_players %}

{% include "includes/icon.html" with icon="info_alt" %} There {% if inactive_players|length > 1 %}are{% else %}is{% endif %} {{ inactive_players|length }} inactive player{{ inactive_players | pluralize }}.

{% if not run.multiplayer or simpl_configuring %}

Select ‘Mark Active’ next to each player’s name to allow them to join the game.

{% endif %} {% endif %}

Click ‘Impersonate’ next to a player to view their game. NOTE: No actions can be made as the player while impersonating.

{% if run.continuous %}

New players are not currently able to join this game. To allow new players to join, return to the Game Status screen.

{% endif %}

Download CSV of players

{% endblock %}