{% extends "main.html" %} {% block title %}Person (Verbose){% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Person details

{% for a in person_details %}

{{a.datastore}}

{% for i,j in a.items %} {% endfor %}
{{ i }}{{ j }}
{% endfor %}
{% for account in account_details %} {% for name, details in account.items %}

Account details - {{ name }}

{% for a in details %}

{{ a.datastore }}

{% for i,j in a.items %} {% endfor %}
{{ i }}{{ j }}
{% empty %}

No datastores.

{% endfor %}
{% empty %}

Account details

Account is not in any machine categories (should never happen).

{% endfor %} {% endfor %}
{% endblock %}