By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 task-monitor.html

View raw Download
text/html • 386 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
Task monitor for {{ result.id }}
4
{% endblock %}
5
{% block breadcrumbs %}
6
<li><a href="/task/{{ result.id }}">Task {{ result.id }}</a></li>
7
{% endblock %}
8
{% block content %}
9
<x-frame style="--width: 896px;" class="flexible-space">
10
<h1>Task results</h1>
11
<pre>{{ result.get() }}</pre>
12
</x-frame>
13
{% endblock %}