{% if run.status < run.STATUS.PLAY %}

The game is currently in Setup.

These players are enrolled in the game and ready to play. You may now enable Players Prepare and Start Game in Game Status.

{% endif %} {% if run.status == run.STATUS.PLAY and not run.ended %}

The game is currently in Play.

{% elif run.ended %}

Gameplay has ended.

{% endif %} {% if inactive_players %}

There {{ inactive_players|pluralize:"is,are" }} {{ inactive_players|length }}{% if inactive_players|length != inactive_count %}/{{ inactive_count }}{% endif %} Inactive player{{ inactive_players|pluralize }}.

{% if run.status < run.STATUS.PLAY or run.continuous %}

Select "Mark Active" next to {{ inactive_players|pluralize:"this,each" }} player's name to allow them to join. They will be notified and added immediately to a new game.

{% endif %} {% endif %}