mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-16 07:50:16 +02:00
Beautify services table with hover and no borders Unify formatting of mumble/jabber/ts3 service URLs in table
28 lines
1.3 KiB
HTML
28 lines
1.3 KiB
HTML
{% load i18n %}
|
|
|
|
<tr>
|
|
<td class="text-center">Teamspeak 3</td>
|
|
<td class="text-center">{{ authinfo.teamspeak3_uid }}</td>
|
|
<td class="text-center"><a href="ts3server://{{ TEAMSPEAK3_PUBLIC_URL }}">{{ TEAMSPEAK3_PUBLIC_URL }}</a></td>
|
|
<td class="text-center">
|
|
{% ifequal authinfo.teamspeak3_uid "" %}
|
|
<a href="{% url 'auth_activate_teamspeak3' %}" title="Activate" class="btn btn-warning">
|
|
<span class="glyphicon glyphicon-ok"></span>
|
|
</a>
|
|
{% else %}
|
|
<a href="{% url 'auth_verify_teamspeak3' %}" title="Verify Client ID" class="btn btn-success" title="Verify">
|
|
<span class="glyphicon glyphicon-log-in"></span>
|
|
</a>
|
|
<a href="{% url 'auth_reset_teamspeak3_perm' %}" title="Refresh Token" class="btn btn-primary">
|
|
<span class="glyphicon glyphicon-refresh"></span>
|
|
</a>
|
|
<a href="{% url 'auth_deactivate_teamspeak3' %}" title="Deactivate" class="btn btn-danger">
|
|
<span class="glyphicon glyphicon-remove"></span>
|
|
</a>
|
|
<a href="ts3server://{{ TEAMSPEAK3_PUBLIC_URL }}?nickname={{ authinfo.teamspeak3_uid }}" title="Connect" class="btn btn-success">
|
|
<span class="glyphicon glyphicon-arrow-right"></span>
|
|
</a>
|
|
{% endifequal %}
|
|
</td>
|
|
</tr>
|