Divent/divent/templates/guilds.html.j2

24 lines
703 B
Plaintext
Raw Normal View History

2022-06-08 21:02:14 +00:00
{% extends "base.html.j2" %}
{% block content %}
2022-07-05 16:23:05 +00:00
<div id="box">
<div id="avatars">
<img src="{{ bot.display_avatar }}"
alt="{{ _('Bot Logo') }}"
width="80"
height="80"/>
<span id="dots">...</span>
2022-07-26 13:39:00 +00:00
<img src="{{ avatar_cdn('avatars', user.id, user.avatar) }}"
2022-07-05 16:23:05 +00:00
alt="{{ _('User Logo') }}"
width="80"
height="80"/>
</div>
</div>
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 %}