{% extends "base.html" %} {% block title %}Network{% endblock %} {% block content %}

Network

Node identity, connections, and contribution tracking

{% if node %}
Node Information
Alias
{{ node.alias }}
Created
{{ node.created_at }}
Public ID
{{ node.public_id }}
Version
{{ node.version }}
{% if node.get('expertise') %}
Expertise ({{ node.expertise|length }})
{% for exp in node.expertise %} {% endfor %}
Domain Description
{{ exp.domain }} {{ exp.description }}
{% endif %} {% if node.get('data_sources') %}
Data Sources ({{ node.data_sources|length }})
{% for src in node.data_sources %} {% endfor %}
Name Type Status
{{ src.name }} {{ src.type }} {% if src.status == 'active' %} {{ src.status }} {% elif src.status == 'syncing' %} {{ src.status }} {% else %} {{ src.status }} {% endif %}
{% endif %}
{% if node.get('formation_contributors') %}
Formation Attribution ({{ node.formation_contributors|length }})
{% for contrib in node.formation_contributors %} {% endfor %}
Name Type Description Recognized
{{ contrib.name }} {{ contrib.contribution_type }} {{ contrib.description }} {{ contrib.recognized_at[:10] }}
{% endif %} {% if connections %}
Connections ({{ connections|length }})
{% for conn in connections %} {% endfor %}
Peer Relationship Connected
{{ conn.get('peer_alias', conn.get('peer_public_id', '')[:16]) }} {{ conn.get('relationship', '') }} {{ conn.get('connected_at', '')[:10] }}
{% endif %} {% if contributions %}
Contributions ({{ contributions|length }})
{% for c in contributions %} {% endfor %}
Title Type Value Date
{{ c.get('title', '') }} {{ c.get('type', '') }} {{ c.get('value', '') }} {{ c.get('recorded_at', '')[:10] }}
{% endif %} {% else %}

No network node configured.

Run charter connect init to create your network node.

{% endif %} {% endblock %}