blob: fc679b01d87602b1e90e11c623f48781d2e21a48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block title %}overview of {{ source|e }}{% endblock %}
{% block content %}
<h1>overview of {{ source|e }}</h1>
<table border='1'><tr><th>binary from {{ source|e }}</th><th>savable</th><th>other package</th></tr>
{%- for package, sharing in packages.items() -%}
<tr><td><a href="../binary/{{ package|e }}"><span class="binary-package">{{ package|e }}</span></a></td><td>
{%- if sharing -%}
{{ sharing.savable|filesizeformat }}</td><td><a href="../binary/{{ sharing.package|e }}"><span class="binary-package">{{ sharing.package|e }}</span></a> <a href="../compare/{{ package|e }}/{{ sharing.package|e }}">compare</a>
{%- else -%}</td><td>{%- endif -%}
</td></tr>
{%- endfor -%}
</table>
<p>Note: Not all sharing listed here. Click on binary packages with non-zero savable to see more.</p>
{% endblock %}
|