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

Availability and contracting information

{% endcall %} {% call layout.horizontal_section() %}
{% call layout.card("Availability", "project-panel") %} {{ pc.hiring_panel(profile.hiring) }} {% endcall %} {% if profile.contracting.legal_entity or profile.contracting.engagement_types %} {% call layout.card("Contracting", "project-panel") %} {% if profile.contracting.legal_entity %}

Legal entity: {{ profile.contracting.legal_entity }}

{% endif %} {% if profile.contracting.engagement_types %}

Engagement types:

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

Contact me about: {{ profile.contact_preferences.do_contact_about | join(", ") }}

{% endif %} {% if profile.contact_preferences.do_not_contact_about %}

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

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