{{ package.product_name }}
{{ package.latest_version }}
{% if package.installation_instructions %}
{% for platform, value in package.installation_instructions|dictsort %}
{% if value.install %}
Installation instructions
{% break %}
{% endif %}
{% endfor %}
{% for platform, value in package.installation_instructions|dictsort %}
{% if value.install %}
{% with instructions = value.install %}
{% include "home_package_instructions.html" %}
{% endwith %}
{% endif %}
{% endfor %}
{% for platform, value in package.installation_instructions|dictsort %}
{% if value.upgrade %}
Upgrade instructions
{% break %}
{% endif %}
{% endfor %}
{% for platform, value in package.installation_instructions|dictsort %}
{% if value.upgrade %}
{% with instructions = value.upgrade %}
{% include "home_package_instructions.html" %}
{% endwith %}
{% endif %}
{% endfor %}
{% endif %}