{% extends "public/base.html" %} {% block title %}Alliance Auth{% endblock %} {% block page_title %}Corporation Stats{% endblock page_title %} {% load corputils_extras %} {% block content %}

Corporation Member Data

{% if perms.auth.member %}
{% if corp %}
Corporation

Name: {{ corp.corporation_name }}

Ticker: {{ corp.corporation_ticker }}

Member count: {{ corp.member_count }}

Player count: {{characters_with_api|length}}

Unregistered characters: {{characters_without_api|length}}

Registered Characters
{% for main, alts in characters_with_api %} {% endfor %} {% for main, value in characters_without_api %} {% endfor %}
Main character Character list

{{ main }}

{% for name in alts %}

{{ name}}

{% endfor %}

{{ main }}

No API registered!

{% else %}
{% endif %}
{% else %} {% if IS_CORP %} {% else %} {% endif %} {% endif %}
{% endblock content %}