{% 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 doctrines_list %} {% for a, j in doctrines_list.items %} {% regroup j|dictsort:"FolderName" by FolderName as folder_list %} {% for FolderName in folder_list %}

{{ FolderName.grouper }}

{% for item in FolderName.list %} {% endfor %}
{% trans "Name" %} {% trans "Doctrine" %} {% trans "Last updated" %}
{{ item.Name }} {{ item.FolderName }} {{ item.LastUpdatedString }}
{% endfor %}
{% endfor %} {% else %}

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

{% endif %}
{% endblock content %}