summaryrefslogtreecommitdiffstats
path: root/qtip/web/templates/bench/task_detail.html
blob: 3f42c10a5b68c7191e898d50dec5b5410866df3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends 'bench/base.html' %}
{% block content %}
    <div class="card">
        <div class="header">
            <h2>Task</h2>
        </div>
        <div class="body">
            <table class="table-responsive table">
                <thead>
                    <tr role="row">
                        <th>Repo</th>
                        <th>Status</th>
                        <th>Start Time</th>
                        <th>End Time</th>
                        <th>Run time</th>
                     </tr>
                </thead>
                <tbody>
                    <tr role="row">
                        <td>{{ object.repo}}</td><td>{{ object.get_status_display }}</td><td>{{ object.start_time }}</td>
                        <td>{{ object.end_time }}</td><td>{{ object.duration }}</td><td>{{ object.log }}</td>
                    </tr>
                </tbody>
            </table>
        </div>
        <div class="body">
            <div>
                <p>
                    {{ log | linebreaks }}
                </p>
            </div>
        </div>
    </div>
{% endblock %}