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

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 %}
{% includecontents "simpl/includes/search_form.html" with value=request.GET.q %} Filter players {% endincludecontents %} {% if not players and not inactive_players and not invites %}

No players found.

{% endif %} {% if players %}

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

{% endif %}
{% 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 player.character %} {% if not player.character.instance.date_end %} Active {% else %} Done {% endif %} {% else %} {% includecontents "simpl/includes/dropdown.html" %} {% includecontents "simpl/includes/dropdown-item.html" with post=True %} Mark inactive {% contents extra %}{% endcontents %} {% endincludecontents %} {% endincludecontents %} {% endif %} {% endincludecontents %} {% endfor %}
{% endif %} {% if inactive_players %}

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

{% for player in inactive_players %} {% includecontents "simpl/includes/player.html" %} {% if run.status <= run.STATUS.PREPARE %} {% includecontents "simpl/includes/dropdown.html" %} {% includecontents "simpl/includes/dropdown-item.html" with post=True %} Mark active {% contents extra %}{% endcontents %} {% endincludecontents %} {% endincludecontents %} {% endif %} {% endincludecontents %} {% endfor %}
{% endif %} {% if invites %}

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

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