{% load staticfiles %} {% load app_tags %} {% block scripts %} {% endblock scripts %} {% if open_play_games %} {% include "portal/partials/popup.html" %}
{% for game in open_play_games %} {% endfor %}

Class

Challenge

Status

Action

{{ game.game_class.name }}

{{ game.worksheet.name }}

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

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

{% else %}

It doesn’t look like you have access to any games, yet.

{% endif %} {% endif %}