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

Packages maintained by {{ profile.profile.display_name or profile.identity.display_name }}

{% endcall %} {% call layout.horizontal_section() %}
{% call layout.card("All packages", "project-panel") %} {% if profile.packages %}
{% for pkg in profile.packages %} {{ pc.package_card(pkg) }} {% endfor %}
{% else %}

No packages listed.

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