{% extends "public/base.html" %} {% load bootstrap %} {% load staticfiles %} {% load i18n %} {% block title %}Alliance Auth{% endblock %} {% block page_title %}FleetUp - Doctrine{% endblock page_title %} {% block content %}
{% for a, j in doctrine.items %} {% regroup j.Data|dictsort:"Role" by Role as role_list %} {% for Role in role_list %}

{{ Role.grouper }}

{% for item in Role.list %} {% endfor %}
{% trans "Name" %} {% trans "Role" %} {% trans "Hull type" %} {% trans "Ship type" %} {% trans "Estimated ISK" %} {% trans "Categories" %}
{{ item.Name }} {{ item.Role }} {{ item.HullType }} {{ item.ShipType }} {% load humanize %}{{ item.EstPrice|intword }} {% for categories in item.Categories %} {{ categories }}, {% endfor %}
{% endfor %}
{% endfor %}
{% endblock content %}