aboutsummaryrefslogtreecommitdiff
path: root/templates/report_cycles.html
blob: f4b707e4925f71476d5e4325b8c0b3f50b2c33ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends base_page %}

{% block content %}
<h2>Report Cycles</h2>
<table>
{% for month in months%}
  <tr>
    <td>{{month}}</td>
    <td><a href="./{{month}}/downloads/?by=component">By Component</a></td>
    <td><a href="./{{month}}/downloads/?by=build">By Build</a></td>
    <td><a href="./{{month}}/country/">By Country</a></td>
    <td><a href="./{{month}}/region/">By Region/ISP</a></td>
  </tr>
{% endfor %}
</table>
{% endblock %}