{% extends "public/base.html" %} {% load bootstrap %} {% load staticfiles %} {% block title %}Alliance Auth{% endblock %} {% block page_title %}Corporation Member Tracking{% endblock page_title %} {% block content %}

Corporation Member Data

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

{{ corp.corporation_name }}

Ticker: {{ corp.corporation_ticker }}

Member count: {{ corp.member_count }}

Player count: {{characters_with_api|length}}

Unregistered characters: {{characters_without_api|length}}

API Index:
{{characters_with_api|length}}/{{ corp.member_count }}
{% if characters_with_api %}
{% for maincharname, player in characters_with_api %} {% endfor %}
Main character Killboard Main corporation Character list

{{ maincharname }}

Killboard {% if not corp.corporation_name == player.maincorp%} {{ player.maincorp }} {% else %} {{ player.maincorp }} {% endif %} {% for char in player.altlist %}

{{ char.character_name }}

{% endfor %}
{% else %} {% endif %}
{% if characters_without_api %}
{% for character_name, character_id in characters_without_api %} {% endfor %}
Character Killboard API

{{ character_name }}

Killboard No API registered!
{% else %} {% endif %}
{% else %}
{% endif %}
{% else %} {% if IS_CORP %} {% else %} {% endif %} {% endif %} {% endblock content %}