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

{{ profiles | length }} profile(s) installed in this environment.

{% endcall %} {% call layout.horizontal_section() %}
{% call layout.card("Installed Profiles", "project-panel") %} {% if profiles %}
{% for prof in profiles %}

{{ 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 %}
{% else %}

No profiles found. Install a pypi-profile-* package to see profiles here.

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