summaryrefslogtreecommitdiff
path: root/templates/browse-package.html
blob: 3ac81c338e047fd4e425b5455b902196e9876b24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "browse-layout.html" %}
{% block content %}
  <h2>{{package}}</h2>

  <table class="table" style='width: auto'>
    <tr>
      <th />
      {% for r in releases %}<th>{{r}}</th> {% endfor %}
    </tr>

    {% for a in arches %}
      <tr>
        <th>{{a}}</th>
        {% for r in releases %}
        <td class="{{ results[r][a] }}"><a href="{{package}}/{{r}}/{{a}}">{{ results[r][a] }}</a></td>
        {% endfor %}
      </tr>
    {% endfor %}
  </table>
{% endblock %}