{% 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 %} {% block profile_title %}Search Profiles{% endblock %} {% block content %} {% call layout.horizontal_section("horizontal-section--grey horizontal-section--thin") %}
{% endcall %} {% call layout.horizontal_section() %}
{% call layout.card("Search Results", "project-panel") %} {% if query %}

{% if results %} {{ results | length }} result(s) for {{ query | e }} {% else %} No profiles matched {{ query | e }}. {% endif %}

{% endif %} {% if results %}
{% for prof in results %}

{{ prof.display_name or prof.pypi_username }}

Package: {{ prof.package_name }}  ·  {% if prof.kind == "individual" %} {{ feedback.status_badge("Individual", tone="good") }} {% else %} {{ feedback.status_badge(prof.kind | title, tone="unknown") }} {% endif %}

{% if prof.summary %}

{{ prof.summary }}

{% endif %}

{% if prof.location %}{{ prof.location }}  · {% endif %} {{ prof.package_count }} package(s)

View pypi-profile {% if prof.pypi_username %}  ·  PyPI {% endif %}

{% endfor %}
{% elif not query %}

Enter a search term above to find profiles.

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