1 {% extends
"base.html" %}
6 <h3 class=
"title">Package ToDo Lists
</h3>
7 <table class=
"results" width=
"100%">
10 <th>Creation Date
</th>
13 {% for todo in todos %}
14 <tr class=
"{% cycle pkgr2,pkgr1 %}">
15 <td style=
"white-space:nowrap"><a href=
"/todo/{{ todo.id }}/">{{ todo.name }}
</a></td>
16 <td>{{ todo.date_added }}
</td>
17 <td>{{ todo.description }}
</td>
26 <h3 class=
"title">Repository Package Stats
</h3>
27 <table class=
"results" width=
"100%">
29 <th width=
"50%">Repository
</th>
33 {% for repo in repos %}
34 <tr class=
"{% cycle pkgr2,pkgr1 %}">
35 <td><a href=
"/packages/?repo={{ repo.name }}">{{ repo.name }}
</a></td>
36 <td><strong>{{ repo.count }}
</strong> packages
</td>
37 <td><strong>{{ repo.flagged }}
</strong> packages
</td>
45 <h3 class=
"title">Maintainer Package Stats
</h3>
46 <table class=
"results" width=
"100%">
48 <th width=
"50%">Maintainer
</th>
52 {% for maint in stats %}
53 <tr class=
"{% cycle pkgr2,pkgr1 %}">
54 <td><a href=
"/packages/?maint={{ maint.0.id }}">{{ maint
.0.get_full_name }}
</a></td>
55 <td><strong>{{ maint
.1 }}
</strong> packages
</td>
56 <td><strong>{{ maint
.2 }}
</strong> packages
</td>
64 <h3 class=
"title">Package Maintenance
</h3>
68 <td style=
"vertical-align: top">
70 <a href=
"/packages/?maint={{ maint.id }}">My Packages
</a><br />
72 <a href=
"/packages/?maint=0">Orphan Packages
</a><br />
74 <a href=
"/devel/guide/">Package Maintainer's Guide
</a><br />
75 </td><td style=
"vertical-align: top">
77 <h4>My Flagged Packages:
</h4>
79 <li><form method=
"post" action=
"/devel/notify/">
80 <input name=
"notify" type=
"checkbox" value=
"yes"{% if maint.get_profile.notify %} checked{% endif %}
/> Notify me when packages are flagged
82 <input type=
"submit" value=
"Update" />
87 <li><a href=
"/packages/{{ pkg.id }}/">{{ pkg.repo.name }}::{{ pkg.pkgname }} {{ pkg.pkgver }}
</a></li>