summaryrefslogtreecommitdiffstats
path: root/qtip/web/templates/bench/task_list.html
blob: 188d6b812790970d26db5a22339cfa4e656d5cf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'bench/base.html' %}
{% block content %}
    <div>
        <h3>Tasks Log</h3>
        <table>
            <th>Repo</th>
            <th>Status</th>
            <th>Start Time</th>
            <th>End Time</th>
            <th>Run time</th>
            {% for task in object_list %}
                <tr onclick="location.href='{% url 'task_view' task.id %}'">
                    <td>{{ task.repo }}</td>
                    <td>{{ task.get_status_display }}</td>
                    <td>{{ task.start_time }}</td>
                    <td>{{ task.end_time }}</td>
                    <td>{{ task.run_time }}</td>
                </tr>
            {% endfor %}
        <table>
    </div>
{% endblock %}