2019-05-25 23:25:00 +01:00

25 lines
924 B
Plaintext

<div class="container">
<div class="row">
<div class="col s12">
{{#empty}}
<p class="center-align" style="padding-top: 50px; font-size: 16px">
You are not the admin of any guilds that the bot is in. Click below to invite the bot:
<br />
<a href="https://invite.ticketsbot.net">Invite</a>
</p>
{{/empty}}
{{^empty}}
<p class="center-align" style="padding-top: 50px; font-size: 16px">
Select a server to manage below
</p>
<ul class="collection">
{{#servers}}
<li class="collection-item"><a href="{{baseUrl}}/manage/{{serverid}}/settings">{{servername}}</a></li>
{{/servers}}
</ul>
{{/empty}}
</div>
</div>
</div>