mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-22 15:45:04 -07:00
9 lines
244 B
HTML
9 lines
244 B
HTML
{% macro list_rooms(rooms) -%}
|
|
<ul>
|
|
{% for room in rooms %}
|
|
<li><a href="{{ url_for("host_room", room=room.id) }}">Room #{{ room.id|suuid }}</a></li>
|
|
{% endfor %}
|
|
{{ caller() }}
|
|
</ul>
|
|
{%- endmacro %}
|