{% extends "base.html" %} {% load i18n %} {% load static from staticfiles %} {% block headtitle %}{% trans 'Standings' %}{% endblock %} {% block stylesheets %} {% endblock %} {% block main_content %}
{% if standings_visibility == 'alliance' or standings_visibility == 'both' or user.is_superuser %}

Alliance

{% for standing in alliance_standings %} {% endfor %}
{% trans 'Entity' %}{% trans 'Standing' %}
{{standing.contactName}} {{standing.value}}
{% endif %} {% if standings_visibility == 'corporation' or standings_visibility == 'both' or user.is_superuser %}

Corporation

{% for standing in corp_standings %} {% endfor %}
{% trans 'Entity' %}{% trans 'Standing' %}
{{standing.contactName}} {{standing.value}}
{% endif %}
{% if standings_visibility == 'none' or standings_visibility == '\'none\''%}

Standings are set to Private.

{% endif %} {% if user.is_superuser %}

Set Public settings

{% csrf_token %}
{% endif %} {% endblock %}