{% extends 'layout.html' %} {% block container %} {% include 'search.html' %}

Package : {{ data.basic.Name }}

{# Place for bugs link #}

Basic items

{% for key, value in data.basic.items() %} {% endfor %}
{{ key }} {% if key == "Url" %}{{ value }} {% else %} {{ value }} {% endif %}

Description

{{ data.description|safe }}

Media information

{% for item in data.media %} {% endfor %}
{{ item[0] }} {{ item[1] }}

Advanced items

{% for item in data.advanced %} {% if item[0] in ("Files", "Dependencies", "Changelog", "Provides")%} {% endfor %}
{{ item[0] }} ☰
    {{ item[1] |safe }}
{% else %}
{{ item[0] }} {{ item[1] |safe }} {% endif %}

{% endblock %}