{% extends "public/base.html" %}
{% load staticfiles %}
{% block title %}Alliance Auth{% endblock %}
{% block page_title %}Services Management{% endblock page_title %}
{% block extra_css %}{% endblock extra_css %}
{% block content %}
{% if perms.auth.blue_member %}
Service |
Username |
Password |
Domain |
Action |
{% if ENABLE_BLUE_FORUM %}
Forums |
{{ authinfo.forum_username }} |
{{ authinfo.forum_password }} |
{{ FORUM_URL }} |
{% ifequal authinfo.forum_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_BLUE_IPBOARD %}
IPBoard Forums |
{{ authinfo.ipboard_username }} |
{{ authinfo.ipboard_password }} |
{{ FORUM_URL }} |
{% ifequal authinfo.ipboard_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_BLUE_JABBER %}
Jabber |
{{ authinfo.jabber_username }} |
{{ authinfo.jabber_password }} |
{{ JABBER_URL }} |
{% ifequal authinfo.jabber_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_BLUE_MUMBLE %}
Mumble |
{{ authinfo.mumble_username }} |
{{ authinfo.mumble_password }} |
{{ MUMBLE_URL }} |
{% ifequal authinfo.mumble_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_BLUE_TEAMSPEAK3 %}
Service |
Unique ID |
PermissionKey |
Quick Link |
Action |
Teamspeak 3 |
{{ authinfo.teamspeak3_uid }} |
{{ authinfo.teamspeak3_perm_key }} |
{% ifequal authinfo.teamspeak3_uid "" %}
{% else %}
Teamspeak3
Link
{% endifequal %}
|
{% ifequal authinfo.teamspeak3_uid "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% elif perms.auth.member %}
Service |
Username |
Password |
Domain |
Action |
{% if ENABLE_AUTH_FORUM %}
Forums |
{{ authinfo.forum_username }} |
{{ authinfo.forum_password }} |
{{ FORUM_URL }} |
{% ifequal authinfo.forum_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_AUTH_IPBOARD %}
IPBoard Forums |
{{ authinfo.ipboard_username }} |
{{ authinfo.ipboard_password }} |
{{ FORUM_URL }} |
{% ifequal authinfo.ipboard_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_AUTH_JABBER %}
Jabber |
{{ authinfo.jabber_username }} |
{{ authinfo.jabber_password }} |
{{ JABBER_URL }} |
{% ifequal authinfo.jabber_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_AUTH_MUMBLE %}
Mumble |
{{ authinfo.mumble_username }} |
{{ authinfo.mumble_password }} |
{{ MUMBLE_URL }} |
{% ifequal authinfo.mumble_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_AUTH_TEAMSPEAK3 %}
Service |
Unique ID |
PermissionKey |
Quick Link |
Action |
Teamspeak 3 |
{{ authinfo.teamspeak3_uid }} |
{{ authinfo.teamspeak3_perm_key }} |
{% ifequal authinfo.teamspeak3_uid "" %}
{% else %}
Teamspeak3
Link
{% endifequal %}
|
{% ifequal authinfo.teamspeak3_uid "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% else %}
{% if IS_CORP %}
You are not in the corporation.
{% else %}
You are not in the alliance.
{% endif %}
{% endif %}
{% endblock content %}