{% extends "simpl/base.html" %} {% load static %} {% load includecontents %} {% block content_inner %} {{ block.super }}
{% if simpl_configuring %}

All players are ready to play. You may now enable Players Prepare and Start the {% if run.multiplayer %}Tournament{% else %}Practice{% endif %} game.

{% comment %} {% if next_url %}

Next Step

{% endif %} {% endcomment %}
{% endif %}

Players List

{% if run.status >= run.STATUS.PLAY and run.multiplayer %} {% for team, team_players in teams.items %}

{{ team }}

{% for player in team_players %} {% includecontents "simpl/includes/player.html" %}{% endincludecontents %} {% endfor %}
{% endfor %} {% else %}
{% for player in players %} {% includecontents "simpl/includes/player.html" %} {% if not player.character.instance.date_end %} Active {% else %} Done {% endif %} {% endincludecontents %} {% endfor %}
{% endif %} {% if inactive_players %}

Inactive Players

{% for player in inactive_players %} {% includecontents "simpl/includes/player.html" %}{% endincludecontents %} {% endfor %}
{% endif %} {% if invites %}

Invites Sent

{% for player in invites %} {% includecontents "simpl/includes/player.html" %}{% endincludecontents %} {% endfor %}
{% endif %}
{% endblock %}