2017-03-26 05:31:47 +02:00
{% extends 'site_layout.html.j2' %}
2017-03-25 08:52:56 +01:00
{% block title %}Dashboard{% endblock %}
{% block content %}
<h1>User Dashboard</h1>
<p class="flow-text">Select a server to configure Titan Embeds.</p>
<p>*List missing some servers? It's because you must have either <strong>Manage Server</strong>, <strong>Kick Members</strong>, or <strong>Ban Members</strong> permissions to modify embed settings.</p>
<div class="row">
{% for server in servers %}
2017-04-08 01:35:14 +02:00
<div class="col l4 m6 s12">
2017-03-26 05:31:47 +02:00
<div class="card-panel indigo lighten-5 z-depth-3 hoverable">
2017-03-25 08:52:56 +01:00
<div class="row valign-wrapper">
2017-04-08 01:35:14 +02:00
<div class="col s3">
2017-03-25 08:52:56 +01:00
{% if server.icon %}
<img src="{{ icon_generate(server.id, server.icon) }}" alt="" class="circle responsive-img">
{% else %}
<span class="black-text">No icon :(</span>
{% endif %}
</div>
2017-03-26 05:31:47 +02:00
<div class="col s7">
2017-03-25 08:52:56 +01:00
<span class="black-text">
2017-03-26 05:31:47 +02:00
<p class="flow-text truncate">{{ server.name }}</p>
2017-03-25 08:52:56 +01:00
<br>
<a class="waves-effect waves-light btn" href="{{url_for('user.administrate_guild', guild_id=server['id'])}}">Modify</a>
</span>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
{% endblock %}