{% extends "layout.html" %} {% block toptext %}

{{trustroot}} requests to use the following details from your FAS Account

{% endblock %} {% block cardwidths %}col-md-10 col-md-offset-1{% endblock %} {% block maintitle %}Review the authorization details{% endblock %} {% block main %}
{% for entry in authz_details|dictsort %}
{{ entry[0] }}
{%- if entry[1] is iterable and not entry[1] is string -%}
{{ entry[1] | join(', ') }}
{%- else -%}
{{ entry[1] }}
{%- endif -%}
{% endfor %}
Remember approval

{% endblock %}