2022-06-08 21:02:14 +00:00
|
|
|
{% extends "base.html.j2" %}
|
|
|
|
{% block content %}
|
2022-06-16 20:48:16 +00:00
|
|
|
<select name="guild">
|
2022-06-08 21:02:14 +00:00
|
|
|
{% for guild in guilds %}
|
2022-06-16 20:48:16 +00:00
|
|
|
<option value="{{ guild.id }}">
|
2022-06-08 21:02:14 +00:00
|
|
|
{{ guild.name }}
|
2022-06-16 20:48:16 +00:00
|
|
|
</option>
|
2022-06-08 21:02:14 +00:00
|
|
|
{% endfor %}
|
2022-06-16 20:48:16 +00:00
|
|
|
</select>
|
2022-06-08 21:02:14 +00:00
|
|
|
{% endblock content %}
|