[cvs] / lkrtweb / templates / lkrt / functional_index.html  

cvs: lkrtweb/templates/lkrt/functional_index.html

File: [cvs] / lkrtweb / templates / lkrt / functional_index.html (download) (as text)
Revision: 1.2, Mon May 7 16:40:16 2007 UTC (6 years ago) by tobias
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +15 -5 lines
prettier UI

{% load lkrt_extras %}
{% extends "base.html" %}

{% block content %}
<h1>Functional test results</h1>
{% if source_trees %}
	<table>
	{% for tree in source_trees %}
		<tr>
			<td colspan='{{ archs|length|plus:1 }}'>
				<div class='tree-header'>
					<a href='/func/{{tree.safename}}'>{{ tree.name }}</a>
					<div class='tree-nav'>
						<a href='{{tree.url}}'>more info</a> |
						[un]subscribe
					</div>
				</div>
			</td>
		</tr>
		<tr>
			<th>Kernel Version</th>
			{% for arch in archs %}
			<th>{{ arch.name }}</th>
			{% endfor %}
		</tr>
		{% for kversion in tree.kernel_versions.all|slice:":5" %}
		<tr>
			<td class='kernel-version'>
				<a href='/func/{{tree.safename}}/{{kversion.id}}'>{{kversion.base}}</a>
				<div class='patch-urls'>
				{% for patch in kversion.patches.all %}
					+ <a href='http://test.kernel.org/{{patch.url}}'>{{patch.name}}</a>
					<br/>
				{% endfor %}
				</div>
			</td>
			{% for arch in archs %}
			<td class='status_{{ kversion|status_for:arch }}'>
				<a href='/func/{{tree.safename}}/{{kversion.id}}/{{arch.safename}}'>{{ kversion|status_for:arch }}</a>
			</td>
			{% endfor %}	
		</tr>
		{% endfor %}
	{% endfor %}
	</table>
{% else %}
	<p>No kernel test results found.</p>
{% endif %}
{% endblock %}


   		

Tobias McNulty

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help