{% extends "layout.html" %} {% block content_header %} {{ build_breadcrumbs(current_breadcrumbs + [ { 'name': _('External Auth'), 'link': url_for('.ExternalAuthView:index'), 'icon': 'external-link' } ]) }} {% endblock %} {% block content %}
{% call build_list_containers(_('External Auth'), 'external-link') %} {% call build_list_table() %} {% call build_list_table_headers(get=url_for('.ExternalAuthView:get', id=''), delete=url_for('.ExternalAuthView:delete', id='')) %} {{ _('Type') }} {% endcall %} {% call(external_auth) build_list_table_rows(resource_list['items']) %} {{ external_auth.type }} {% endcall %} {% endcall %} {% endcall %} {% if type_list | length %} {% call build_hidden_add_containers(_('Add External Authentication')) %} {% for type in type_list %} {{ type }} {% endfor %} {% endcall %} {% endif %}
{% endblock %}