{% extends "admin/layout.twig" %} {% block content %}

Preview Playnite Import

Review the games that will be imported from "{{ filename }}". Check the details below and click "Import Games" to proceed.

Import Summary

Total Games
{{ preview.total }}
Valid Games
{{ preview.valid }}
Invalid Games
{{ preview.invalid }}
Sources
{{ preview.games|length > 0 ? (preview.games|first).source_name : 'N/A' }}
{% if preview.errors %}

Import Errors

    {% for error in preview.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

Games to Import

{% for game in preview.games %}
{% if game.cover_image %} {{ game.title }} {% else %}
{% endif %}

{{ game.title }}

{% if game.genre %} {{ game.genre }} {% endif %} {% if game.platform %} {{ game.platform }} {% endif %} {% if game.release_date %} {{ game.release_date|date('Y') }} {% endif %}
{% endfor %}

Confirm Import

If a game with the same Playnite ID already exists, update it with the new data instead of creating a duplicate.

Cancel
{% endblock %}