{% extends "master.html" %} {% load i18n app_utils %} {% block content %}
{% for game in game_list %} {% empty %} {% endfor %}
{% translate "Name" %} {% translate "Duration" %} {% translate "Level" %} {% translate "Status" %} {% translate "Actions" %} {% icon_action 'create' %}
{{ game.name }} {{ game.duration }} {{ game.get_level_display }} {% translate game.get_status_display %} {% icon_action 'detail' game.pk %} {% icon_action 'update' game.pk %} {% icon_action 'delete' game.pk %} {% icon_action 'bulk_create_qr' game.pk %} {% if plays|get_item:game.pk %} {% icon_action 'play' plays|get_item:game.pk %} {% else %} {% icon_action 'create_play' game.pk %} {% endif %}
{% translate "There is no game yet!" %}
{% endblock %}