{% if game_folders %}
{% if not is_static %} {% endif %}
Name
Date
Game
Rounds
Models
{% for game in game_folders %} {% set folder_name = game.name.split('/')[-1] %}
{{ folder_name }}
{% if game.created_timestamp %} {{ game.created_timestamp|format_timestamp }} {% else %} - {% endif %}
{% if game.game_name %} {{ game.game_name }} {% else %} - {% endif %}
{% if game.round_info %} {{ game.round_info[0] }}/{{ game.round_info[1] }} {% else %} ? {% endif %}
{% if game.models %} {% for model in game.models %} {{ model|strip_model_prefix }} {% endfor %} {% else %} - {% endif %}
{% endfor %}
{% else %}

No Game Sessions Found

No folders containing metadata.json were found in the base directory.

Make sure you have run some games and they have generated log files.

{% endif %}