{% extends "base.html" %}
{% block headtitle %}Standings{{ posViewMode }}{% endblock %}
{% block breadcrumbs %}
Home
Standings
{% endblock %}
{% block stylesheets %}
{% endblock %}
{% block main_content %}
{% if standings_public == 'alliance' or standings_public == 'both' or user.is_superuser %}
{% endif %}
{% if standings_public == 'corporation' or standings_public == 'both' or user.is_superuser %}
{% endif %}
{% if standings_public == 'none' or standings_public == '\'none\''%}
Standings are set to Private.
{% endif %}
{% if user.is_superuser %}
Set Public settings
{% endif %}
{% endblock %}