aboutsummaryrefslogtreecommitdiff
blob: 52ad2fe43da3f6e4e4d8ba512f08f88bb881e704 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block intro %}
We have information about these {% if category %}packages{% else %}categories{% endif %}:
{% endblock %}

{% block main %}

<ul>
{% for obj in objects %}
  <li>{% if category %}
    <a href="/collagen/browse/{{category.name}}/{{ obj }}{% if failed %}?failed{% endif %}">{{ obj }}/</a>
    {% else %}
    <a href="/collagen/browse/{{obj.name}}{% if failed %}?failed{% endif %}">{{ obj.name }}</a>
    {% endif %}
  </li>
{% endfor %}
</ul>

{% endblock %}