Archipelago/WebHostLib/templates/view_seed.html

25 lines
884 B
HTML
Raw Normal View History

2020-06-20 18:03:06 +00:00
{% extends 'layout.html' %}
{% import "macros.html" as macros %}
2020-06-20 18:03:06 +00:00
{% block head %}
<title>Multiworld Seed {{ seed.id }}</title>
{% endblock %}
{% block body %}
Seed #{{ seed.id }}<br>
Created: {{ seed.creation_time }} UTC <br>
2020-06-20 18:03:06 +00:00
Players:
<ul class="list-group">
{% for team in seed.multidata["names"] %}
<li class="list-group-item">Team #{{ loop.index }} - {{ team | length }}
<ul class="list-group">
{% for player in team %}
<li class="list-group-item">{{ player }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
{% call macros.list_rooms(rooms) %}
2020-06-20 18:03:06 +00:00
<li class="list-group-item list-group-item-action"><a href="{{ url_for("new_room", seed=seed.id) }}">new
room</a></li>
{% endcall %}
2020-06-20 18:03:06 +00:00
{% endblock %}