evorepo/templates/packages/signoffs.html

51 lines
1.8 KiB
HTML
Raw Normal View History

2008-08-06 14:54:11 -07:00
{% extends "base.html" %}
2008-08-06 14:58:15 -07:00
{% block title %}Arch Linux - Package Signoffs{% endblock %}
2008-08-06 14:54:11 -07:00
{% block content %}
{% if packages %}
<div id="dev-signoffs" class="box">
<h2>Package Signoffs</h2>
<table id="signoffs" class="results">
<thead>
2008-08-06 14:54:11 -07:00
<tr>
<th>Arch</th>
<th>Package</th>
<th>Version</th>
2008-08-06 14:58:15 -07:00
<th>Last Updated</th>
<th>Target Repo</th>
2008-08-06 14:58:15 -07:00
<th>Approved</th>
<th>Signoff</th>
2008-08-06 14:54:11 -07:00
</tr>
</thead>
<tbody>
{% for pkg,target in packages %}
<tr class="{% cycle 'odd' 'even' %}">
2008-08-06 14:54:11 -07:00
<td>{{ pkg.arch.name }}</td>
<td><a href="{{ pkg.get_absolute_url }}"
title="View package details for {{ pkg.pkgname }}">{{ pkg.pkgname }}</a></td>
2008-08-06 14:54:11 -07:00
<td>{{ pkg.pkgver }}-{{ pkg.pkgrel }}</td>
2008-08-06 14:58:15 -07:00
<td>{{ pkg.last_update }}</td>
<td>{{ target }}</td>
<td class="signoff-{{pkg.approved_for_signoff|yesno}}">
{{ pkg.approved_for_signoff|yesno:"Yes,No" }}</td>
<td>
<ul>
<li><a href="/packages/signoff_package/{{pkg.arch}}/{{pkg.pkgname}}/"
title="Signoff {{pkg.pkgname}} for {{pkg.arch}}">Signoff</a>
</li>
{% for signoff in pkg.signoffs %}
<li class="signed-username" title="Signed off by {{signoff.packager}}">
{{signoff.packager}}</li>
{% endfor %}
</ul>
</td>
2008-08-06 14:54:11 -07:00
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
2008-08-06 14:54:11 -07:00
{% endblock %}