{% extends "layout.html" %} {% block title %}{{ super() }}Package {{ context}}/{{ package }}{% endblock %} {% block content %} {{ super() }}

Displaying {{ context}}/{{ package }}

{% for p in result.keys() %}

{{ p }}

View reverse deps {% for k in result[p].keys() %} {% if result[p][k] is iterable and result[p][k] is not string %} {% else %} {% endif %} {% endfor %}
Attribute Value
{{ k }} {% for dep in result[p][k] %} {% if k == 'REQUIRES' or k == 'PROVIDES' or k == 'RECOMMENDS' or k == 'SUGGESTS' %} {{ dep }}
{% else %} {{ dep }}
{% endif %} {% endfor %}
{{ result[p][k] }}
{% endfor %} {% endblock %}