2017-07-06 23:35:08 +02:00
|
|
|
{% extends 'site_layout.html.j2' %}
|
2017-07-14 06:04:04 +02:00
|
|
|
{% set title="Admin" %}
|
2017-07-06 23:35:08 +02:00
|
|
|
|
|
|
|
{% block content %}
|
2017-07-22 07:02:59 +02:00
|
|
|
<h1>Administrate Titan Embeds</h1>
|
|
|
|
<p class="flow-text">Select an action.</p>
|
2017-07-06 23:35:08 +02:00
|
|
|
|
2017-07-22 07:02:59 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col s12">
|
|
|
|
<div class="card-panel indigo lighten-5 z-depth-3 hoverable black-text">
|
|
|
|
<h4>Cosmetics</h4>
|
|
|
|
<p class="flow-text">Give or revoke special <em>cosmetics privilages</em> for users.</p>
|
|
|
|
<a class="waves-effect waves-light btn" href="{{ url_for('admin.cosmetics') }}">Manage</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-07-27 22:55:28 +02:00
|
|
|
<div class="col s12">
|
|
|
|
<div class="card-panel indigo lighten-5 z-depth-3 hoverable black-text">
|
|
|
|
<h4>Guilds</h4>
|
|
|
|
<p class="flow-text">Manage any guild in Titan, this will give you the normal dashboard.</p>
|
|
|
|
<a class="waves-effect waves-light btn" href="{{ url_for('admin.guilds') }}">Manage</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-08-14 03:10:03 +02:00
|
|
|
<div class="col s12">
|
|
|
|
<div class="card-panel indigo lighten-5 z-depth-3 hoverable black-text">
|
|
|
|
<h4>Titan Tokens</h4>
|
|
|
|
<p class="flow-text">View transactions and modify Titan Tokens per user.</p>
|
|
|
|
<a class="waves-effect waves-light btn" href="{{ url_for('admin.manage_titan_tokens') }}">Manage</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-07 03:41:02 +01:00
|
|
|
<div class="col s12">
|
|
|
|
<div class="card-panel indigo lighten-5 z-depth-3 hoverable black-text">
|
|
|
|
<h4>User Defined CSS</h4>
|
|
|
|
<p class="flow-text">Manage user defined css (custom css).</p>
|
|
|
|
<a class="waves-effect waves-light btn" href="{{ url_for('admin.list_custom_css_get') }}">Manage</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-05 09:52:22 +01:00
|
|
|
<div class="col s12">
|
|
|
|
<div class="card-panel indigo lighten-5 z-depth-3 hoverable black-text">
|
|
|
|
<h4>Disabled Servers</h4>
|
|
|
|
<p class="flow-text">Block or reinstate servers from using Titan Embeds.</p>
|
|
|
|
<a class="waves-effect waves-light btn" href="{{ url_for('admin.get_disabled_guilds') }}">Manage</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-07-22 07:02:59 +02:00
|
|
|
</div>
|
2017-08-02 21:28:08 +02:00
|
|
|
{% endblock %}
|