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

Account

License

{% if license.key %} {% endif %} {% if license.activated_at %} {% endif %} {% if license.expires_at %} {% endif %} {% if license.expired %} {% endif %}
Tier{{ license.tier_label }}
Key{{ license.key }}
Seats{{ license.seats }}
Activated{{ license.activated_at }}
Expires{{ license.expires_at }}
StatusEXPIRED
{% if upgrade_options %}

Upgrade Options

{% for opt in upgrade_options %}
{{ opt.label }}

{{ opt.description }}

Subscribe
{% endfor %} {% endif %}
{% if onboard_state %}

Enterprise Onboarding

Progress: {{ onboard_state.steps_completed | length }}/8 steps

{% if onboard_state.started_at %}

Started: {{ onboard_state.started_at }}

{% endif %} {% for step in onboard_steps %} {% endfor %}
StepNameStatus
{{ step.number }} {{ step.name }} {% if step.number in onboard_state.steps_completed %} Complete {% else %} Pending {% endif %}
{% endif %}

Governance Summary

{% if identity %}
Node{{ identity.alias }} ({{ identity.public_id[:16] }}...)
Chain Length{{ chain_length }}
Chain Integrity {% if chain_intact %} Intact {% else %} Broken {% endif %}
{% else %}

No identity configured. Run charter init to get started.

{% endif %}
{% endblock %}