{% extends 'webpanel/base.html' %} {% block title %}{{ game.name }} - Game Details{% endblock %} {% block content %}

{{ game.name }}

{{ game.name }}

{{ game.name }}

{% if active_servers %} {% for server in active_servers %}
Server: {{ game.name }}

IP Address: {{ server.ip_address }}

Port: {{ server.port }}

Status: Online

{% endfor %} {% else %}

No active servers found for this game.

{% endif %}

Pull data from some open API to populate information about the game and render it.

{% endblock %}