{% extends "base.html" %}
{% block headtitle %}Standings{{ posViewMode }}{% endblock %}
{% block breadcrumbs %}
Home
Standings
{% endblock %}
{% block main_content %}
{% if user.is_superuser %}
Set Public settings
{% endif %}
{% if standings_public == 'alliance' or standings_public == 'both' or user.is_superuser %}
Alliance Standings |
Entity | Standing |
{% for contact in allaince_standings %}
{{contact.contactName}} | {{contact.standing}} |
{% endfor %}
{% endif %}
{% if standings_public == 'corporation' or standings_public == 'both' or user.is_superuser %}
Corporation Standings |
Entity | Standing |
{% for contact in corp_standings %}
{{contact.contactName}} | {{contact.standing}} |
{% endfor %}
{% endif %}
{% if standings_public == 'none' or standings_public == '\'none\''%}
Standings are set to Private.
{% endif %}
{% endblock %}