aboutsummaryrefslogtreecommitdiff
path: root/deprecated/automation/server/monitor/templates/job_log.html
blob: 937b21b0efc33867482531a942213f4cb5560506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block content %}
<h1 class="title">Job {{ job_id }}</h1>

<h2 class="title">Command output:</h2>

<table class="raw">
<tbody>
{% for datetime, stream, line in log_lines %}
<tr class="{% cycle 'line1' 'line2' %}">
  <td>{{ datetime }}</td>
  <td>{{ stream }}</td>
  <td><pre class="code">{{ line|wordwrap:80 }}</pre></td>
</tr>
{% endfor %}
</tbody>
</table>

{% endblock %}