{% 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 %}
{% elif perms.auth.alliance_member %}
Service |
Username |
Password |
Domain |
Action |
{% if ENABLE_ALLIANCE_FORUM %}
Forums |
{{ authinfo.forum_username }} |
{{ authinfo.forum_password }} |
{{ FORUM_URL }} |
{% ifequal authinfo.forum_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_ALLIANCE_IPBOARD %}
IPBoard Forums |
{{ authinfo.ipboard_username }} |
{{ authinfo.ipboard_password }} |
{{ FORUM_URL }} |
{% ifequal authinfo.ipboard_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_ALLIANCE_JABBER %}
Jabber |
{{ authinfo.jabber_username }} |
{{ authinfo.jabber_password }} |
{{ JABBER_URL }} |
{% ifequal authinfo.jabber_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% if ENABLE_ALLIANCE_MUMBLE %}
Mumble |
{{ authinfo.mumble_username }} |
{{ authinfo.mumble_password }} |
{{ MUMBLE_URL }} |
{% ifequal authinfo.mumble_username "" %}
{% else %}
{% endifequal %}
|
{% endif %}
{% else %}
You are not in the alliance
{% endif %}
{% endblock content %}