Divent/divent/templates/guilds.html.j2
Xéfir Destiny f7e5cf1143
Some checks failed
continuous-integration/drone/push Build is failing
Stash
2022-06-16 22:48:16 +02:00

11 lines
266 B
Django/Jinja

{% extends "base.html.j2" %}
{% block content %}
<select name="guild">
{% for guild in guilds %}
<option value="{{ guild.id }}">
{{ guild.name }}
</option>
{% endfor %}
</select>
{% endblock content %}