Divent/divent/templates/guilds.html.j2
Xéfir Destiny 3cc1037c76
All checks were successful
continuous-integration/drone/push Build is passing
Stash
2022-07-05 18:23:05 +02:00

24 lines
671 B
Django/Jinja

{% extends "base.html.j2" %}
{% block content %}
<div id="box">
<div id="avatars">
<img src="{{ bot.display_avatar }}"
alt="{{ _('Bot Logo') }}"
width="80"
height="80"/>
<span id="dots">...</span>
<img src="{{ user.avatar }}"
alt="{{ _('User Logo') }}"
width="80"
height="80"/>
</div>
</div>
<select name="guild">
{% for guild in guilds %}
<option value="{{ guild.id }}">
{{ guild.name }}
</option>
{% endfor %}
</select>
{% endblock content %}