It is valuable when looking for the most recent test run to know the mod time of log files. Add this to the generated index files to provide that information to our users. Change-Id: I03669afd73d1f0ce14adce17a3136ce26377b403
15 lines
428 B
HTML
15 lines
428 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Index of {{ logname }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>Index of {{ logname }}</h1>
|
|
<table><tr><th>Name</th><th>Last Modified</th><th>Size</th></tr>
|
|
{% for link, title, mtime, size in file_list %}
|
|
<tr><td><a href="{{ link }}">{{ title }}</a></td><td>{{ mtime }}</td><td style="text-align: right">{{ size }}</td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
</body>
|
|
</html>
|