{% extends "base.html" %} {% block content %}

{{ _('My Games') }}

⬇️ {{ _('Export CSV') }} ⬇️ Export PDF (for sharing) ⬆️ {{ _('Import CSV') }} + {{ _('Add New Game') }}
{% if games %}
{% for game in games %} {% endfor %}
{{ _('Cover') }} {{ _('Name') }} {{ _('Key') }} {{ _('Status') }} {{ _('Created') }} {{ _('Redeem by') }} {{ _('Shop') }} {{ _('Actions') }}
{% if game.steam_appid %} Steam Header {% endif %} {{ game.name }} {{ game.steam_key }} {% if game.status == 'nicht eingelöst' %} {{ _('Not redeemed') }} {% elif game.status == 'verschenkt' %} {{ _('Gifted') }} {% elif game.status == 'eingelöst' %} {{ _('Redeemed') }} {% endif %} {{ format_date(game.created_at) }} {% if game.redeem_date %} {{ format_date(game.redeem_date) }} {% endif %} {% if game.url %} 🔗 {{ _('Shop') }} {% endif %} {% if game.status == 'verschenkt' %} {% endif %} ✏️
{% else %}
{{ _('No games yet') }}
{% endif %} {% endblock %}