{% extends "base.html" %} {% block content %} {% if games %}
{% for game in games %} {% endfor %}
{{ _('Cover') }} {{ _('Name') }} {{ _('Key') }} {{ _('Status') }} {{ _('Created') }} {{ _('Redeem by') }} {{ _('Shop') }} {{ _('Price') }} {{ _('Actions') }}
{% if game.steam_appid %} Steam Header {% elif game.url and 'gog.com' in game.url %} GOG Logo {% endif %} {{ game.name }} {{ game.steam_key }} {% if game.status == 'nicht eingelöst' %} {{ _('Not redeemed') }} {% elif game.status == 'geschenkt' %} {{ _('Gifted') }} {% elif game.status == 'eingelöst' %} {{ _('Redeemed') }} {% endif %} {{ game.created_at|strftime('%d.%m.%Y') }} {% if game.redeem_date %} {{ game.redeem_date|strftime('%d.%m.%Y') }} {% endif %} {% if game.url %} 🔗 {{ _('Shop') }} {% endif %} {% if game.current_price is not none %}
{{ _('Current Deal') }}
{{ "%.2f"|format(game.current_price) }} € {% if game.current_price_shop %} ({{ game.current_price_shop }}) {% endif %}
{% endif %} {# Historical Low #} {% if game.historical_low is not none %}
{{ _('Hist. Low') }}
{{ "%.2f"|format(game.historical_low) }} €
{% endif %}
{% if game.status == 'geschenkt' %} {% endif %} ✏️
{% else %}
{{ _('No games yet') }}
{% endif %} {% endblock %}