{% extends "base.html" %} {% block content %}
| {{ _('Cover') }} | {{ _('Name') }} | {{ _('Key') }} | {{ _('Status') }} | {{ _('Created') }} | {{ _('Redeem by') }} | {{ _('Shop') }} | {{ _('Actions') }} |
|---|---|---|---|---|---|---|---|
{% if game.steam_appid %}
{% elif game.url and 'gog.com' in game.url %}
{% 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 %} ✏️ |