{% if open_play_games %}
{% for game in open_play_games %} {% endfor %}

Game name

Status

Action

{{ game.name }}

{% if game.status == 'r' %}
Running {% elif game.status == 's' %}
Stopped {% elif game.status == 'p' %}
Paused {% endif %}
{% else %}

It doesn’t look like you have any games created. To create a game, use the ‘Create a new game’ button above.

{% endif %}