summaryrefslogtreecommitdiffstats
path: root/templates/packages/differences.html
blob: 1c3e97e3e0f8c09852d32164fc38ff97a09e10b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% extends "base.html" %}
{% block title %}Arch Linux - Package Differences by Architecture{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}

{% block content %}
{% if differences %}
<div class="box">
    <h2>Package Differences by Architecture</h2>
    <table class="results">
        <thead>
            <tr>
                <th>Package Name</th>
                <th>Repository</th>
                <th>{{ arch_a.name }} Version</th>
                <th>{{ arch_b.name }} Version</th>
            </tr>
        </thead>
        <tbody>
            {% for name, repo, pkg1, pkg2 in differences %}
            <tr class="{% cycle 'odd' 'even' %}">
                <td>{{ name }}</td>
                <td>{{ repo.name }}</td>
                {% if pkg1 %}
                <td><a href="{{ pkg1.get_absolute_url }}"
                        title="View package details for {{ pkg1.pkgname }}">
                        <span{% if pkg1.flag_date %} class="flagged"{% endif %}>{{ pkg1.pkgver }}-{{ pkg1.pkgrel }}</span></a></td>
                {% else %}<td>-</td>{% endif %}
                {% if pkg2 %}
                <td><a href="{{ pkg2.get_absolute_url }}"
                        title="View package details for {{ pkg2.pkgname }}">
                        <span{% if pkg2.flag_date %} class="flagged"{% endif %}>{{ pkg2.pkgver }}-{{ pkg2.pkgrel }}</span></a></td>
                {% else %}<td>-</td>{% endif %}
            </tr>
            {% endfor %}
        </tbody>
    </table>
</div>
{% load cdn %}{% jquery %}
<script type="text/javascript" src="/media/jquery.tablesorter.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $(".results").tablesorter({widgets: ['zebra'], sortList: [[1,0], [0,0]]});
});
</script>
{% endif %}
{% endblock %}