{% extends 'admin/layout.twig' %} {% block title %}{{ title }} - Admin Panel - MediaLib{% endblock %} {% block content %}

{{ title }}

{{ game ? 'Edit game details' : 'Add a new game to your library' }}

Back to Games
{% if flash.getMessage('success') %}
{{ flash.getMessage('success') | first }}
{% endif %}
Example: Action, Adventure, RPG
{% if game %} {% endif %}
Cover Preview
{% if game and game.cover_image %} Cover {% else %}
No cover available
{% endif %}
{% if game %}
SteamGridDB Media
Available Media
{% endif %}
Metadata
Created: {{ game ? game.created_at|date('Y-m-d H:i') : 'New' }}
Last Updated: {{ game ? game.updated_at|date('Y-m-d H:i') : 'N/A' }}
{% if game %} {% endif %} {% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}