Files
os-loganalyze/os_loganalyze/templates/file_index.html
Clark Boylan 8a0619c666 Add mtime to generated indexes
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
2015-10-08 13:19:16 -07:00

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>