blob: 7e118ac569ac86a983f57508c96a74b9304c682d (
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
|
{% extends "base.html" %}
{% block title %}
Download Previous log files
{% endblock %}
{% block content %}
<div class = "container">
<div class = "row">
<h3>Download previous log files</h3>
<table class = "table table-condensed">
<thead>
<tr>
<th>Date</th>
<th>Slot timings</th>
<th>Filename</th>
<th>Download</th>
</tr>
</thead>
<tbody>
{% for exp in experiment %}
<tr>
<td>{{exp.slot.start_time|date:"M d, Y"}}</td>
<td>{{exp.slot.start_time|time}} -- {{exp.slot.end_time|time}} </td>
<td>{{exp.logname}}</td>
<td><a href="{% url 'experiment_logs' exp.slot.id %}" target="_blank">Download</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}
|