2015-05-21 13:17:33 +02:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block title %}{{ super() }}ABI Check results{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
{{ super() }}
|
|
|
|
<h1>ABI Check results</h1>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<td>ID</td>
|
2015-05-26 13:21:03 +02:00
|
|
|
<td>Target</td>
|
2015-05-21 13:17:33 +02:00
|
|
|
<td>State</td>
|
|
|
|
<td>Result</td>
|
|
|
|
<td>Created</td>
|
|
|
|
<td>Updated</td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for r in requests %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{ url_for('request', request_id=r.id) }}">{{ r.id }}</a></td>
|
|
|
|
<!--
|
|
|
|
<td><a href="https://build.opensuse.org/request/show/{{r.request_id}}">{{ r.request_id }}</a></td>
|
|
|
|
-->
|
2015-05-26 13:21:03 +02:00
|
|
|
<td>
|
|
|
|
{% for check in r.abichecks %}
|
|
|
|
{{ check.dst_project }}/{{ check.dst_package }}<br/>
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
2015-05-21 13:17:33 +02:00
|
|
|
<td>{{ r.state }}</td>
|
|
|
|
<td>{{ r.result }}</td>
|
|
|
|
<td>{{ r.t_created }}</td>
|
|
|
|
<td>{{ r.t_updated }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|