{% extends "public/base.html" %} {% block title %}Alliance Auth{% endblock%} {% block page_title %}Something something here{% endblock page_title %} {% block content %}

Dashboard

{% if perms.auth.alliance_member %}
Alliance Announcment:
Something something dark side
{% for character in characters %} {% ifequal character.character_id authinfo.main_char_id %}
Main character:

{{character.character_name}}

{{character.corporation_name}}

{{character.alliance_name}}

{% endifequal %} {% endfor %}
Groups:
{% for group in user.groups.all %} {% endfor %}

{{ group.name }}

{% else %}

Not part of the alliance

{% endif %}
{% endblock content %}