{% 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 %}Contact{% endblock %} {% block content %} {{ pc.profile_header(profile) }} {% call layout.horizontal_section("horizontal-section--grey horizontal-section--thin") %}

How to get in touch

{% endcall %} {% call layout.horizontal_section() %}
{% call layout.card("Contact methods", "project-panel") %} {% if profile.contact_methods %} {{ feedback.notification("All contact information is self-asserted.", tone="info") }}
{% for method in profile.contact_methods %} {{ pc.contact_card(method) }} {% endfor %}
{% else %}

No contact methods listed.

{% endif %} {% endcall %} {% if profile.contact_preferences.do_not_contact_about %} {% call layout.card("Contact preferences", "project-panel") %}

Please do not contact about: {{ profile.contact_preferences.do_not_contact_about | join(", ") }}

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