mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
9 lines
238 B
HTML
9 lines
238 B
HTML
{% macro list_rooms(rooms) -%}
|
|
<ul>
|
|
{% for room in rooms %}
|
|
<li><a href="{{ url_for("host_room", room=room.id) }}">Room #{{ room.id }}</a></li>
|
|
{% endfor %}
|
|
{{ caller() }}
|
|
</ul>
|
|
{%- endmacro %}
|