{% 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 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|add:n_unacounted}}

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

{{ maincharname }}

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

{{ char.character_name }}

{% endfor %}
{{ player.n_fats }} {% for char in player.altlist %}

Killboard

{% endfor %}
{% for apiinfo in player.apilist %}

{% endfor %}
{% else %} {% endif %}
{% if characters_without_api %}
{% if 0 < n_unacounted %} {% endif %} {% for character_name, character_id in characters_without_api %} {% endfor %}
Character Killboard

{{ character_name }}

Killboard
{% else %} {% endif %}
{% else %}
{% endif %}
{% endblock content %}