27 lines
936 B
HTML
Executable File
27 lines
936 B
HTML
Executable File
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h3>Logfile links and Changeset links for {{ test }} failures</h3>
|
|
<ul>
|
|
<li style="display:none"><ul>
|
|
{% for f in section %}{% 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 %}
|
|
|
|
<div class="pagination">
|
|
<span class="step-links">
|
|
{% if section.has_previous %}
|
|
<a href="?page={{ section.previous_page_number }}">previous</a>
|
|
{% endif %}
|
|
|
|
<span class="current">
|
|
Page {{ section.number }} of {{ section.paginator.num_pages }}.
|
|
</span>
|
|
|
|
{% if section.has_next %}
|
|
<a href="?page={{ section.next_page_number }}">next</a>
|
|
{% endif %}
|
|
</span>
|
|
</div> |