{% extends "public/base.html" %} {% load bootstrap %} {% load staticfiles %} {% 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 %}
Name Role Hull type Ship type Estimated ISK 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 %}