{% extends "base.html" %} {% load static %} {% block title %}{{ sub_product.name }} — {{ main_product.name }}{% endblock %} {% block meta_description %}{{ sub_product.short_description }}{% endblock %} {% block content %}
{{ main_product.name }}

{{ sub_product.name }}

{{ sub_product.short_description }}

{% if sub_product.image %}
{{ sub_product.name }}
{% endif %}

About {{ sub_product.name }}

{{ sub_product.rendered_description }}
{% if show_releases_section %} {% if distribution_installable %}

Downloads

{% if featured_version.is_featured_stable %} Stable {% endif %} {% if featured_install_cells %}
{% for cell in featured_install_cells %}
{% if cell.icon %} {% else %} {% endif %}
{{ cell.label }} v{{ featured_version.version }} {% if cell.label == "Source code" %}Source{% else %}Download{% endif %}
{% endfor %}
{% endif %}
{% if featured_version.package_resource_url %}

Package resource

{% endif %} {% if featured_version.release_notes %}

{{ featured_version.release_notes }}

{% endif %} {% if show_older_versions_link %}

Older releases

{% endif %}
{% elif distribution_package %}

Resources

    {% for ver in package_versions %}
  • v{{ ver.version }} {% if ver.is_featured_stable %} Stable {% endif %}
    {% if ver.package_resource_url %} Open {% endif %} {% if ver.source_code_url %} Source {% endif %}
    {% if ver.release_notes %}

    {{ ver.release_notes }}

    {% endif %}
  • {% endfor %}
{% endif %} {% endif %} {% if articles %}
{% for article in articles %}
{% if article.badge %}
{{ article.badge }}
{% endif %}

{{ article.title }}

{{ article.rendered_description }}
{% if article.sections.all %}
{% for section in article.sections.all %}
{{ section.title }}
{{ section.rendered_value }}
{% endfor %}
{% endif %} {% if article.citations.all %}

Citations

    {% for citation in article.citations.all %}
  1. {{ citation.text }} {% if citation.url %} {% endif %}
  2. {% endfor %}
{% endif %} {% if article.citation_count_display is not None %} {% if article.citations.exists %} {{ article.citation_count_display }} cited {% else %}
{{ article.citation_count_display }} cited
{% endif %} {% endif %}
{% endfor %}
{% endif %}
{% endblock %}