You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
404 B
20 lines
404 B
{% 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 %}
|
|
|