{% extends "base.html" %} {% block headtitle %}Standings{{ posViewMode }}{% endblock %} {% block breadcrumbs %}
  • Home
  • Standings
  • {% endblock %} {% block main_content %} {% if user.is_superuser %}

    Set Public settings

    {% csrf_token %}
    {% endif %}
    {% if standings_public == 'alliance' or standings_public == 'both' or user.is_superuser %}
    {% for contact in allaince_standings %} {% endfor %}

    Alliance Standings

    Entity
    Standing
    {{contact.contactName}}
    {{contact.standing}}
    {% endif %} {% if standings_public == 'corporation' or standings_public == 'both' or user.is_superuser %}
    {% for contact in corp_standings %} {% endfor %}

    Corporation Standings

    Entity
    Standing
    {{contact.contactName}}
    {{contact.standing}}
    {% endif %}
    {% if standings_public == 'none' or standings_public == '\'none\''%}

    Standings are set to Private.

    {% endif %} {% endblock %}