{% extends "base.html" %} {% autoescape None %} {% block title %}Profile - IceProd{% end %} {% block head_scripts %} {% module SecureStyle(content=""" ul.groups { list-style-type: none; } ul.groups li { display: inline-block; } ul.groups li+li:before { content: ', '; } #token { word-wrap: break-word; } div.section>:not(h4) { margin: 0 .5em; } div.section>h4 { margin: .5em 0; } div.section>h3 { margin: .5em 0; } p, .form_group { margin: .25em 0; } .indent { margin-left: .25em; } .inline { display: inline-block; } form button { margin: .25em 0; } """) %} {% end %} {% block page_title %}My Profile{% end %} {% block body %}

User Info

Username

{{ username }}

Groups

Data Movement Credentials

User Credentials

{% for url in user_creds %}

URL: {{ url }}

TYPE: {{ user_creds[url]["type"]}}

{% end %} {# #}
{% if groups != ['users'] %}

Group Credentials

{% for g in group_creds %}

GROUP: {{ g }}

{% for url in group_creds[g] %}

URL: {{ url }}

TYPE: {{ group_creds[g][url]["type"]}}

{% end %} {# #}
{% end %} {% end %}
{% end %}