aboutsummaryrefslogtreecommitdiff
path: root/web/templates/run.html
blob: 77f9f903c5eb8386e189f431c1e0d2f49ec4714d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %} {% block title %}/{{ project_path }}/{{ run_number
}}{% endblock %} {% block path %}/<a href="/{{ project_path }}"
	>{{ project_path }}</a
>/<a href="/{{ project_path }}/{{ run_number }}">{{ run_number }}</a>{% endblock
%} {% block content %}
<pre
	id="stdout"
	style="white-space: pre-wrap"
></pre>

{% for n in run %}
<script>
	document.getElementById('stdout').textContent = {{ n|tojson }};
	 var s = document.currentScript;
	 s.parentNode.removeChild(s);
</script>
{% endfor %} {% endblock %}

<!-- vim: set filetype=jinja: -->