summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2008-08-16 13:36:15 -0400
committerDusty Phillips <buchuki@gmail.com>2008-08-16 13:36:15 -0400
commitac63cc4101da73e5b1b4424c53f29033557c6596 (patch)
tree34e02c6288290f93d5a8be2d13e7183d77a1690a /templates
parente1fa499f637e00f5e7eb91ec460903558b46017a (diff)
downloadarchweb-ac63cc4101da73e5b1b4424c53f29033557c6596.tar.gz
archweb-ac63cc4101da73e5b1b4424c53f29033557c6596.zip
#10340 Integrated Signoffs completed but untested
Diffstat (limited to 'templates')
-rw-r--r--templates/packages/signoffs.html19
1 files changed, 17 insertions, 2 deletions
diff --git a/templates/packages/signoffs.html b/templates/packages/signoffs.html
index 5c40006e..85c217de 100644
--- a/templates/packages/signoffs.html
+++ b/templates/packages/signoffs.html
@@ -8,6 +8,12 @@
{% endblock %}
{% block content %}
+ {% if message %}
+ <div class="greybox">
+ {{message}}
+ </div>
+ <br />
+ {% endif %}
{% if packages %}
<div class="greybox">
<table class="results" width="100%">
@@ -27,8 +33,17 @@
<td>{{ pkg.maintainer|default:"Orphan" }}</td>
<td>{{ pkg.pkgver }}-{{ pkg.pkgrel }}</td>
<td>{{ pkg.last_update }}</td>
- <td></td>
- <td></td>
+ <td class="signoff_{{pkg.approved_for_signoff|yesno}}">{{ pkg.approved_for_signoff|yesno:"Yes,No" }}</td>
+ <td>
+ <ul>
+ {% for signoff in pkg.signoffs %}
+ <li>{{signoff.packager}}</li>
+ {% endfor %}
+ <li>
+ <a href="/packages/signoff_package/{{pkg.arch}}/{{pkg.pkgname}}/">Signoff</a>
+ </li>
+ </ul>
+ </td>
</tr>
{% endfor %}
</table>