{% 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 %}

Available Services

{% if perms.auth.blue_member %} {% if ENABLE_BLUE_FORUM %} {% endif %} {% if ENABLE_BLUE_IPBOARD %} {% endif %} {% if ENABLE_BLUE_JABBER %} {% endif %} {% if ENABLE_BLUE_MUMBLE %} {% endif %}
Service Username Password Domain Action
Forums {{ authinfo.forum_username }} {{ authinfo.forum_password }} {{ FORUM_URL }} {% ifequal authinfo.forum_username "" %} {% else %} {% endifequal %} IPBoard Forums {{ authinfo.ipboard_username }} {{ authinfo.ipboard_password }} {{ FORUM_URL }} {% ifequal authinfo.ipboard_username "" %} {% else %} {% endifequal %}
Jabber {{ authinfo.jabber_username }} {{ authinfo.jabber_password }} {{ JABBER_URL }} {% ifequal authinfo.jabber_username "" %} {% else %} {% endifequal %}
Mumble {{ authinfo.mumble_username }} {{ authinfo.mumble_password }} {{ MUMBLE_URL }} {% ifequal authinfo.mumble_username "" %} {% else %} {% endifequal %}
{% elif perms.auth.alliance_member %} {% if ENABLE_ALLIANCE_FORUM %} {% endif %} {% if ENABLE_ALLIANCE_IPBOARD %} {% endif %} {% if ENABLE_ALLIANCE_JABBER %} {% endif %} {% if ENABLE_ALLIANCE_MUMBLE %} {% endif %}
Service Username Password Domain Action
Forums {{ authinfo.forum_username }} {{ authinfo.forum_password }} {{ FORUM_URL }} {% ifequal authinfo.forum_username "" %} {% else %} {% endifequal %}
IPBoard Forums {{ authinfo.ipboard_username }} {{ authinfo.ipboard_password }} {{ FORUM_URL }} {% ifequal authinfo.ipboard_username "" %} {% else %} {% endifequal %}
Jabber {{ authinfo.jabber_username }} {{ authinfo.jabber_password }} {{ JABBER_URL }} {% ifequal authinfo.jabber_username "" %} {% else %} {% endifequal %}
Mumble {{ authinfo.mumble_username }} {{ authinfo.mumble_password }} {{ MUMBLE_URL }} {% ifequal authinfo.mumble_username "" %} {% else %} {% endifequal %}
{% else %} {% endif %}
{% endblock content %}