{% 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
{% trans 'Entity' %} | {% trans 'Standing' %} |
{% for standing in alliance_standings %}
{{standing.contactName}} |
{{standing.value}} |
{% endfor %}
{% endif %}
{% if standings_visibility == 'corporation' or standings_visibility == 'both' or user.is_superuser %}
Corporation
{% trans 'Entity' %} | {% trans 'Standing' %} |
{% for standing in corp_standings %}
{{standing.contactName}} |
{{standing.value}} |
{% endfor %}
{% endif %}
{% if standings_visibility == 'none' or standings_visibility == '\'none\''%}
Standings are set to Private.
{% endif %}
{% if user.is_superuser %}
{% endif %}
{% endblock %}