14 lines
564 B
HTML
Executable File
14 lines
564 B
HTML
Executable File
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h3>Logfile links and Changeset links for {{ test }} failures</h3>
|
|
[ Showing up to latest 10000 failures' related log links ]<br />
|
|
<br />
|
|
<ul>
|
|
<li style="display:none"><ul>
|
|
{% for f in failures %}{% ifchanged f.build.id %}</ul></li><li>
|
|
<a href="{{ f.build.tinderboxlink|safe }}">{{ f.build.startdate|date:"Y-m-d H:i" }} {{ f.build.tree }} {{ f.build.get_os_display }}</a> [{{ f.build.changesetlink|safe }}]
|
|
<ul>{% endifchanged %}
|
|
<!--<li>{{ f.description }}</li>-->{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|