summaryrefslogtreecommitdiffstats
path: root/templates/devel/index.html
blob: cb9b92ae22e20920e6f13288a8d736317e5c802f (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{% extends "base.html" %}
{% block title %}Arch Linux - Developer Dashboard{% endblock %}

{% block content %}
<div id="dev-dashboard" class="box">

    <h2>Developer Dashboard</h2>

    <h3>My Flagged Packages</h3>

    <table id="dash-myflagged" class="results dash-stats">
        <thead>
            <tr>
                <th>Name</th>
                <th>Repo</th>
                <th>Version</th>
                <th>Arch</th>
                <th>Flagged</th>
                <th>Last Updated</th>
            </tr>
        </thead>
        <tbody>
            {% for pkg in flagged %}
                <tr class="{% cycle 'odd' 'even' %}">
                    <td><a href="{{ pkg.get_absolute_url }}"
                            title="View package details for {{ pkg.pkgname }}">{{ pkg.pkgname }}</a></td>
                    <td>{{ pkg.repo.name }}</td>
                    <td>{{ pkg.pkgver }}</td>
                    <td>{{ pkg.arch.name }}</td>
                    <td>{{ pkg.flag_date }}</td>
                    <td>{{ pkg.last_update }}</td>
                </tr>
            {% empty %}
                <tr class="empty"><td colspan="4"><em>No flagged packages to display</em></td></tr>
            {% endfor %}
        </tbody>
    </table>

    <h3>My Incomplete Todo List Packages</h3>

    <table id="dash-mytodolist" class="results dash-stats">
        <thead>
            <tr>
                <th>Todo List</th>
                <th>Name</th>
                <th>Repo</th>
                <th>Arch</th>
                <th>Maintainer(s)</th>
            </tr>
        </thead>
        <tbody>
            {% for todopkg in todopkgs %}
                <tr class="{% cycle 'odd' 'even' %}">
                    <td><a href="{{ todopkg.list.get_absolute_url }}"
                            title="View todo list: {{ todopkg.list.name }}">{{ todopkg.list.name }}</a></td>
                    <td><a href="{{ todopkg.pkg.get_absolute_url }}"
                            title="View package details for {{ todopkg.pkg.pkgname }}">{{ todopkg.pkg.pkgname }}</a></td>
                    <td>{{ todopkg.pkg.repo.name }}</td>
                    <td>{{ todopkg.pkg.arch.name }}</td>
                    <td>{{ todopkg.pkg.maintainers|join:', ' }}</td>
                </tr>
            {% empty %}
                <tr class="empty"><td colspan="5"><em>No incomplete todo list packages to display</em></td></tr>
            {% endfor %}
        </tbody>
    </table>

    <h3>Package Todo Lists</h3>

    <table id="dash-todo" class="results dash-stats">
        <thead>
            <tr>
                <th>Name</th>
                <th>Creation Date</th>
                <th>Description</th>
            </tr>
        </thead>
        <tbody>
            {% for todo in todos %}
                <tr class="{% cycle 'odd' 'even' %}">
                    <td><a href="{{ todo.get_absolute_url }}"
                            title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td>
                    <td>{{ todo.date_added }}</td>
                    <td class="wrap">{{ todo.description|safe }}</td>
                </tr>
            {% empty %}
                <tr class="empty"><td colspan="3"><em>No package todo lists to display</em></td></tr>
            {% endfor %}
        </tbody>
    </table>

    <form id="dash-pkg-notify" method="post" action="/devel/notify/">{% csrf_token %}
        <fieldset>
            <p><input id="notify" name="notify" type="checkbox" value="yes"
            {% if user.get_profile.notify %} checked="checked"{% endif %} />
            <label for="notify">Notify me when packages are flagged out-of-date</label>
            <input title="Update notification status" type="submit" value="Update" /></p>
        </fieldset>
    </form>

</div><!-- #dev-dashboard -->

<div id="dash-by-arch" class="dash-stats box">

    <h3 class="dash-stats" style="cursor: pointer"
        title="Click to toggle stats by architecture">
        Stats by Architecture <span class="dash-click">(click to toggle)</span></h3>

    <table id="stats-by-arch" class="results dash-stats">
        <thead>
            <tr>
                <th class="key">Arch</th>
                <th># Packages</th>
                <th># Flagged</th>
            </tr>
        </thead>
        <tbody>
            {% for arch in arches %}
                <tr class="{% cycle 'odd' 'even' %}">
                    <td>{{ arch.name }}</td>
                    <td><a href="/packages/?arch={{ arch.name }}"
                            title="View all packages for the {{ arch.name }} architecture">
                            <strong>{{ arch.packages.count }}</strong> packages</a></td>
                    <td><a href="/packages/?arch={{ arch.name }}&amp;flagged=Flagged"
                            title="View all flagged packages for the {{ arch.name }} architecture">
                            <strong>{{ arch.packages.flagged.count }}</strong> packages</a></td>
                </tr>
            {% endfor %}
        </tbody>
    </table>

</div><!-- #dash-by-arch -->

<div id="dash-by-repo" class="dash-stats box">

    <h3 class="dashboard dash-stats" style="cursor: pointer"
        title="Click to toggle stats by repository">
        Stats by Repository <span class="dash-click">(click to toggle)</span></h3>

    <table id="stats-by-repo" class="results dash-stats">
        <thead>
            <tr>
                <th class="key">Repository</th>
                <th># Packages</th>
                <th># Flagged</th>
            </tr>
        </thead>
        <tbody>
            {% for repo in repos %}
                <tr class="{% cycle 'odd' 'even' %}">
                    <td>{{ repo.name }}</td>
                    <td><a href="/packages/?repo={{ repo.name }}"
                            title="View all packages in the {{ repo.name }} repository">
                            <strong>{{ repo.packages.count }}</strong> packages</a></td>
                    <td><a href="/packages/?repo={{ repo.name }}&amp;flagged=Flagged"
                            title="View all flagged packages in the {{ repo.name }} repository">
                            <strong>{{ repo.packages.flagged.count }}</strong> packages</a></td>
                </tr>
            {% endfor %}
        </tbody>
    </table>

</div><!-- dash-by-arch -->

<div id="dash-by-maintainer" class="dash-stats box">

    <h3 class="dashboard dash-stats" style="cursor: pointer"
        title="Click to toggle stats by maintainer">
        Stats by Maintainer <span class="dash-click">(click to toggle)</span></h3>

    <table id="stats-by-maintainer" class="results dash-stats">
        <thead>
            <tr>
                <th class="key">Maintainer</th>
                <th># Packages</th>
                <th># Flagged</th>
            </tr>
        </thead>
        <tbody>
            {% for maint in maintainers %}
                <tr class="{% cycle 'odd' 'even' %}">
                    <td>{{ maint.get_full_name }}</td>
                    <td><a href="/packages/?maintainer={{ maint.username }}"
                            title="View all packages maintained by {{ maint.get_full_name }}">
                            <strong>{{ maint.package_count }}</strong> packages</a></td>
                    <td><a href="/packages/?maintainer={{ maint.username }}&amp;flagged=Flagged"
                            title="View all flagged packages maintained by {{ maint.get_full_name }}">
                            <strong>{{ maint.flagged_count }}</strong> packages</a></td>
                </tr>
            {% endfor %}
        </tbody>
    </table>

</div><!-- #dash-by-maintainer -->
{% load cdn %}{% jquery %}
<script type="text/javascript" src="/media/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="/media/archweb.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $("#dash-myflagged:not(:has(tbody tr.empty))").tablesorter(
        {widgets: ['zebra'], sortList: [[0,0]]});
    $("#dash-mytodolist:not(:has(tbody tr.empty))").tablesorter(
        {widgets: ['zebra'], sortList: [[0,0], [1,0]]});
    $("#dash-todo:not(:has(tbody tr.empty))").tablesorter(
            {widgets: ['zebra'], sortList: [[1,1]]});
    $("#stats-by-arch").add("#stats-by-repo").add("#stats-by-maintainer").tablesorter(
        {widgets: ['zebra'], sortList: [[0,0]],
        headers: { 1: { sorter: 'pkgcount' }, 2: { sorter: 'pkgcount' } } });
    $("h3.dash-stats").click(
        function(e) { $(this).next().toggle(); }
    );
});
</script>
{% endblock %}