{% extends 'layout.html' %} {% block title %}Game {{ game.game_id}}{% endblock %} {% block content -%} {% from 'components.html' import boxed_section, game_data, email_link %}
{% call boxed_section('Game Information', padding='') %}
{{ game_data('Payed at', game.payed_at, 'gray-50') }} {{ game_data('Player Name', game.player_name|default('—', true), 'white') }} {{ game_data('Player Email', email_link(game.player_email), 'gray-50') }} {{ game_data('Started at', game.started_at|default('—', true), 'white') }} {{ game_data('Play Time', game.play_time|default('—', true), 'gray-50') }}
{% endcall %} {% call boxed_section('Clues Used') %} {%- if clues %}

A total of {{ clues|count() }} clues were used:

{% else %}

No clue used.

{% endif %} {% endcall %} {% call boxed_section('PayPal Data', class='md:col-span-2') %}
{{ game.paypal_data|default('No data available.', true) }}
{% endcall %}
{%- endblock %}