summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2019-09-08 18:02:11 +0200
committerJelle van der Waa <jelle@vdwaa.nl>2019-09-08 18:02:11 +0200
commit18574f2f9f645c875f1712bf6304d47816efb07a (patch)
treebb821e728c81cd2ca622982ab7fdc4cfacdbe8e1
parent31fac36a4a0a32c703e9d69ee1ec23efc67d605d (diff)
downloadarchweb-18574f2f9f645c875f1712bf6304d47816efb07a.tar.gz
archweb-18574f2f9f645c875f1712bf6304d47816efb07a.zip
devel: move signoff status up for more attention
-rw-r--r--templates/devel/index.html94
1 files changed, 47 insertions, 47 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index 999299f5..bd907f9b 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -45,6 +45,53 @@
</tbody>
</table>
+ <h3>Signoff Status</h3>
+
+ <table id="dash-signoffs" class="results">
+ <thead>
+ <tr>
+ <th>Name</th>
+ <th>Version</th>
+ <th>Arch</th>
+ <th>Target Repo</th>
+ <th>Last Updated</th>
+ <th>Approved</th>
+ <th>Signoffs</th>
+ <th>Packager</th>
+ <th>Maintainer</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for group in signoffs %}
+ <tr>
+ <td>{% pkg_details_link group.package %}</td>
+ <td>{{ group.version }}</td>
+ <td>{{ group.arch.name }}</td>
+ <td>{{ group.target_repo }}</td>
+ <td>{{ group.last_update|date }}</td>
+ {% if group.specification.known_bad %}
+ <td class="approval signoff-bad">Bad</td>
+ {% else %}
+ {% if not group.specification.enabled %}
+ <td class="approval signoff-disabled">Disabled</td>
+ {% else %}
+ <td class="approval signoff-{{ group.approved|yesno }}">{{ group.approved|yesno|capfirst }}</td>
+ {% endif %}
+ {% endif %}
+ <td><ul class="signoff-list">
+ {% for signoff in group.signoffs %}
+ <li class="signed-username" title="Signed off by {{ signoff.user }}">{{ signoff.user }}{% if signoff.revoked %} (revoked){% endif %}</li>
+ {% endfor %}
+ </ul></td>
+ <td>{{ group.packager }}</td>
+ <td>{{ group.maintainer }}</td>
+ </tr>
+ {% empty %}
+ <tr class="empty"><td colspan="9"><em>No packages you maintain or have packaged need signoffs</em></td></tr>
+ {% endfor %}
+ </tbody>
+ </table>
+
<h3>My Incomplete Todo List Packages</h3>
<table id="dash-mytodolist" class="results">
@@ -103,53 +150,6 @@
</tbody>
</table>
- <h3>Signoff Status</h3>
-
- <table id="dash-signoffs" class="results">
- <thead>
- <tr>
- <th>Name</th>
- <th>Version</th>
- <th>Arch</th>
- <th>Target Repo</th>
- <th>Last Updated</th>
- <th>Approved</th>
- <th>Signoffs</th>
- <th>Packager</th>
- <th>Maintainer</th>
- </tr>
- </thead>
- <tbody>
- {% for group in signoffs %}
- <tr>
- <td>{% pkg_details_link group.package %}</td>
- <td>{{ group.version }}</td>
- <td>{{ group.arch.name }}</td>
- <td>{{ group.target_repo }}</td>
- <td>{{ group.last_update|date }}</td>
- {% if group.specification.known_bad %}
- <td class="approval signoff-bad">Bad</td>
- {% else %}
- {% if not group.specification.enabled %}
- <td class="approval signoff-disabled">Disabled</td>
- {% else %}
- <td class="approval signoff-{{ group.approved|yesno }}">{{ group.approved|yesno|capfirst }}</td>
- {% endif %}
- {% endif %}
- <td><ul class="signoff-list">
- {% for signoff in group.signoffs %}
- <li class="signed-username" title="Signed off by {{ signoff.user }}">{{ signoff.user }}{% if signoff.revoked %} (revoked){% endif %}</li>
- {% endfor %}
- </ul></td>
- <td>{{ group.packager }}</td>
- <td>{{ group.maintainer }}</td>
- </tr>
- {% empty %}
- <tr class="empty"><td colspan="9"><em>No packages you maintain or have packaged need signoffs</em></td></tr>
- {% endfor %}
- </tbody>
- </table>
-
<h3>Developer Reports</h3>
<ul>
{% for report in reports %}