{% extends 'pootest/base.html' %} {% load i18n %} {% load tz %} {% load humanize %} {% block content %}
{% translate "Corporation Structures" %}
{% if error %} {% endif %} {% if structures %}

{{ structure_count }} structure{{ structure_count|pluralize }} found.

{% for s in structures %}
{% translate "System:" %}
{{ s.system }}
{% translate "Name:" %}
{{ s.name }}
{% translate "Structure Type:" %}
{{ s.type }}
{% translate "Fuel Level:" %}
{{ s.fuel }}
{% translate "Fuel Required:" %}
{{ s.fuel_required }}
{% translate "Last Update:" %}
{{ s.last_update|utc|date:"Y-m-d H:i:s" }} UTC
{% endfor %}
{% elif not error %}

{% translate "No structures found for this corporation." %}

{% endif %} {% translate "Back" %}
{% endblock %}