| 1 : |
tobias
|
1.1
|
{% load lkrt_extras %} |
| 2 : |
|
|
{% extends "base.html" %} |
| 3 : |
|
|
|
| 4 : |
|
|
{% block content %} |
| 5 : |
|
|
<h1>Functional test results</h1> |
| 6 : |
|
|
{% if source_trees %} |
| 7 : |
tobias
|
1.2
|
<table> |
| 8 : |
tobias
|
1.1
|
{% for tree in source_trees %} |
| 9 : |
|
|
<tr> |
| 10 : |
|
|
<td colspan='{{ archs|length|plus:1 }}'> |
| 11 : |
tobias
|
1.2
|
<div class='tree-header'> |
| 12 : |
tobias
|
1.1
|
<a href='/func/{{tree.safename}}'>{{ tree.name }}</a> |
| 13 : |
tobias
|
1.2
|
<div class='tree-nav'> |
| 14 : |
|
|
<a href='{{tree.url}}'>more info</a> | |
| 15 : |
|
|
[un]subscribe |
| 16 : |
|
|
</div> |
| 17 : |
|
|
</div> |
| 18 : |
tobias
|
1.1
|
</td> |
| 19 : |
|
|
</tr> |
| 20 : |
|
|
<tr> |
| 21 : |
|
|
<th>Kernel Version</th> |
| 22 : |
|
|
{% for arch in archs %} |
| 23 : |
|
|
<th>{{ arch.name }}</th> |
| 24 : |
|
|
{% endfor %} |
| 25 : |
|
|
</tr> |
| 26 : |
|
|
{% for kversion in tree.kernel_versions.all|slice:":5" %} |
| 27 : |
|
|
<tr> |
| 28 : |
tobias
|
1.2
|
<td class='kernel-version'> |
| 29 : |
|
|
<a href='/func/{{tree.safename}}/{{kversion.id}}'>{{kversion.base}}</a> |
| 30 : |
|
|
<div class='patch-urls'> |
| 31 : |
|
|
{% for patch in kversion.patches.all %} |
| 32 : |
|
|
+ <a href='http://test.kernel.org/{{patch.url}}'>{{patch.name}}</a> |
| 33 : |
|
|
<br/> |
| 34 : |
|
|
{% endfor %} |
| 35 : |
|
|
</div> |
| 36 : |
tobias
|
1.1
|
</td> |
| 37 : |
|
|
{% for arch in archs %} |
| 38 : |
|
|
<td class='status_{{ kversion|status_for:arch }}'> |
| 39 : |
|
|
<a href='/func/{{tree.safename}}/{{kversion.id}}/{{arch.safename}}'>{{ kversion|status_for:arch }}</a> |
| 40 : |
|
|
</td> |
| 41 : |
|
|
{% endfor %} |
| 42 : |
|
|
</tr> |
| 43 : |
|
|
{% endfor %} |
| 44 : |
|
|
{% endfor %} |
| 45 : |
|
|
</table> |
| 46 : |
|
|
{% else %} |
| 47 : |
|
|
<p>No kernel test results found.</p> |
| 48 : |
|
|
{% endif %} |
| 49 : |
|
|
{% endblock %} |
| 50 : |
|
|
|
| 51 : |
|
|
|
| 52 : |
|
|
|