{% extends "public/base.html" %} {% load bootstrap %} {% load staticfiles %} {% load i18n %} {% block title %}Alliance Auth{% endblock %} {% block page_title %}FleetUp{% endblock page_title %} {% block content %}
{% if fitting_list %} {% for id, fittings in fitting_list %} {% endfor %}
{% trans "Name" %} {% trans "Hull" %} {% trans "Ship type" %} {% trans "Estimated ISK" %} {% trans "Categories" %}
{{ fittings.name }} {{ fittings.hull }} {{ fittings.shiptype }} {% load humanize %}{{ fittings.estimated|intword }} {% for categories in fittings.categories %} {{ categories }}, {% endfor %}
{% else %}

{% trans "There seems to be no Doctrines in here at the moment!" %}

{% endif %}
{% endblock content %}