{% extends "pypi_profile/base.html" %} {% import "pypi_ds/components/layout.html" as layout %} {% import "pypi_ds/components/feedback.html" as feedback %} {% import "pypi_ds/components/navigation.html" as navigation %} {% import "pypi_profile/components.html" as pc %} {% block profile_title %}Succession{% endblock %} {% block content %} {{ pc.profile_header(profile) }} {% call layout.horizontal_section("horizontal-section--grey horizontal-section--thin") %}

Maintainer continuity and succession guidance

{% endcall %} {% call layout.horizontal_section() %}
{% call layout.card("Succession policy", "project-panel") %} {{ feedback.notification( "Succession information is self-asserted. It is not legally binding.", tone="info" ) }} {{ pc.succession_notice(profile.succession) }} {% endcall %} {% if profile.succession.contacts %} {% call layout.card("Succession contacts", "project-panel") %}
{% for contact in profile.succession.contacts %}

{{ contact.name }}

{% if contact.relationship %}Relationship: {{ contact.relationship }}{% endif %}

{% if contact.contact %}

Contact: {{ contact.contact }}

{% endif %} {% if contact.scope %}

Scope: {{ contact.scope | join(", ") }}

{% endif %}

{{ pc.claim_badge(contact.verification) }}

{% endfor %}
{% endcall %} {% endif %}
{% endcall %} {% endblock %}