summaryrefslogtreecommitdiffstats
path: root/templates/packages/details.html
blob: 2e8d1c2dabfe2d0c817d5ecef69c53c7dcfa4218 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{% extends "base.html" %}
{% load package_extras %}
{% block title %}Pkg: {{ pkg.pkgname }} - Arch Linux Package Details{% endblock %}
{% block content %}
    <div class="box">
        <h2 class="title">{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</h2>
        <div style="float:right" class="listing">
            <ul class="small">
                <li><a href="{{ pkg.get_arch_svn_link }}">SVN Entries ({{pkg.repo|lower}}-{{pkg.arch}})</a></li>
                <li><a href="{{ pkg.get_trunk_svn_link }}">SVN Entries (trunk)</a></li>
                <li><a href="{{ pkg.get_bugs_link }}">Bug Reports</a></li>
                <!-- <li><a href="/packages/files/{{ pkg.id }}/">View File List</a></li> -->
                <li>
            {% if pkg.needupdate %}
                <span style="font-size:x-small"><em>This package has been flagged out-of-date</em></span>
                {% if user.is_authenticated %}
                <br />&nbsp; &nbsp; <a href="/packages/unflag/{{ pkg.id }}/">Click here to unflag</a>
                {% endif %}
            {% else %}
                <a href="/packages/flag/{{ pkg.id }}/">Flag Package Out-of-Date</a>
                <a href="/packages/flaghelp/" onclick="return !window.open('/packages/flaghelp','FlagHelp','height=350,width=450,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=no');"><span style="font-size:x-small">(?)</span></a>
            {% endif %}
                </li>
                {% if user.is_authenticated %}
                  <li>&nbsp;</li>
                  <li>
                  <form name="devaction" method="post" action="/packages/update/">
                      <input type="hidden" name="pkgid" value="{{ pkg.id }}" />
                      <input type="submit" style="background: #e1e3e6;" name="adopt" value="Adopt Package" />
                      <input type="submit" style="background: #e1e3e6;" name="disown" value="Disown Package" />
                  </form>
                  </li>
                {% endif %}
            </ul>
        </div>
        <table class="listing">
            <tr>
                <th>Architecture:</th>
                <td>{{ pkg.arch.name }}</td>
            </tr><tr>
                <th>Repository:</th>
                <td>{{ pkg.repo.name|capfirst }}</td>
            </tr><tr>
                <th>Description:</th>
                <td>{% if pkg.pkgdesc %}{{ pkg.pkgdesc }}{% endif %}</td>
            </tr><tr>
                <th>Upstream URL:</th>
                <td>{% if pkg.url %}<a href="{{ pkg.url }}">{{ pkg.url }}</a>{% endif %}</td>
            </tr><tr>
                <th>License:</th>
                <td>{{ pkg.license }}</td>
            </tr><tr>
                <th>Maintainer:</th>
                <td>{% if pkg.maintainer %}{{ pkg.maintainer.get_full_name }}{% else %}None{% endif %}</td>
            </tr><tr>
                <th>Last Updated:</th>
                <td>{{ pkg.last_update|date:"Y-m-d" }}</td>
            </tr>
        </table>
        <br />
        <table width="100%">
            <tr>
                <td valign="top" width="50%">
                    {% with pkg.get_depends as deps %}
                    <div class="listing">
                        <h4>Dependencies ({{deps|length}}):</h4>
                        {% if deps %}
                        <ul style="font-size:small;list-style:none">
                        {% for depend in deps %}
                          {% ifequal depend.pkg None %}
                            <li>{{ depend.dep.depname }} (virtual)</li>
                          {% else %}
                            <li><a href="{{ depend.pkg.get_absolute_url }}">{{ depend.dep.depname }}</a>{{ depend.dep.depvcmp }}</li>
                          {% endifequal %}
                        {% endfor %}
                        </ul>
                        {% endif %}
                    </div>
                    {% endwith %}
                </td>
                <td valign="top">
                    {% with pkg.get_requiredby as rqdby %}
                    <div class="listing">
                        <h4>Required By ({{rqdby|length}}):</h4>
                        {% if rqdby %}
                        <ul style="font-size:small;list-style:none">
                        {% for req in rqdby %}
                        <li><a href="{{req.get_absolute_url}}">{{ req.pkgname }}{% ifequal req.repo.name "Testing" %} (testing){% endifequal %}{% ifequal req.repo.name "Unstable" %} (unstable){% endifequal %}</a></li>
                        {% endfor %}
                        </ul>
                        {% endif %}
                    </div>
                    {% endwith %}
                </td>
            </tr>
        </table>
    </div>
{% endblock %}