Xéfir Destiny
614c81e59e
All checks were successful
continuous-integration/drone/push Build is passing
24 lines
703 B
Django/Jinja
24 lines
703 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="{{ avatar_cdn('avatars', user.id, 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 %}
|