{% extends "base.html" %} {% block title %}Trust - ActingWeb{% endblock %} {% block content %}
| Peer | Relationship | Status | |
|---|---|---|---|
{{ peerid }}
{% if client_name %}{{ client_name }} {% endif %}
{% if peer_uri %}{{ peer_uri }} {% endif %}
{% if desc %}{{ desc }} {% endif %}
|
{{ rel }} {% if t is mapping and t.get('has_custom_permissions') %}custom perms{% endif %} | {% if approved %}approved{% else %}pending{% endif %} {% if verified %}verified{% endif %} |
{% if not approved and approveuri %}
{% endif %}
{% if approveuri %}
{% endif %}
|
No trust relationships yet.
{% endif %}| Client | Type | Created | Status |
|---|---|---|---|
{{ c.get('client_name', '') if c is mapping else '' }}
{{ c.get('client_id', '') if c is mapping else '' }} |
{{ c.get('trust_type', '') if c is mapping else '' }} | {{ c.get('created_at', '') if c is mapping else '' }} | {{ c.get('status', '') if c is mapping else '' }} |
| Peer | Established via | Created | Last connected |
|---|---|---|---|
{{ conn.get('peerid', '') if conn is mapping else '' }} |
{{ conn.get('established_via', '') if conn is mapping else '' }} | {{ conn.get('created_at', '') if conn is mapping else '' }} | {{ conn.get('last_connected_at', '') if conn is mapping else '' }} {% if conn is mapping and conn.get('last_connected_via') %} ({{ conn.get('last_connected_via') }}) {% endif %} |