{% extends "allianceauth/base.html" %} {% load bootstrap %} {% load staticfiles %} {% load i18n %} {% block page_title %}Fittings - FleetUp{% endblock page_title %} {% block content %}
{% include "fleetup/menu.html" %}
{% 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 Fittings in here at the moment!" %}

{% endif %}
{% endblock content %}