{% extends 'pageWrapper.html' %}
{% import "macros.html" as macros %}
{% block head %}
Multiworld {{ room.id|suuid }}
{% if should_refresh %}{% endif %}
{% endblock %}
{% block body %}
{% include 'header/grassHeader.html' %}
{% if room.owner == session["_id"] %}
Room created from Seed #{{ room.seed.id|suuid }}
{% endif %}
{% if room.tracker %}
This room has a Multiworld Tracker enabled.
{% endif %}
The server for this room will be paused after {{ room.timeout//60//60 }} hours of inactivity.
Should you wish to continue later,
anyone can simply refresh this page and the server will resume.
{% if room.last_port %}
You can connect to this room by using
'/connect {{ config['PATCH_TARGET'] }}:{{ room.last_port }}'
in the client. {% endif %}
{{ macros.list_patches_room(room) }}
{% if room.owner == session["_id"] %}
{% endif %}