Skip to content
Snippets Groups Projects
Commit 316c8e55 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Add div container to log plots

parent ac5c4b52
No related branches found
No related tags found
No related merge requests found
......@@ -11,11 +11,14 @@
{% for filename, filesize in files.items() %}
{% if filename != 'MSG.log' %}
<a href="/logs/{{ filename }}">
<img src="/logs/{{ filename|replace('.log', '.png') }}"
width="100"
alt="{{ filename }} ({{'%0.1f' | format(filesize/1024/1024) }}MB)" />
</a>
<div class="log-plot" style="display: inline; width=100px">
<span>{{ filename }} ({{'%0.1f' | format(filesize/1024/1024) }}MB)<span>
<a href="/logs/{{ filename }}">
<img src="/logs/{{ filename|replace('.log', '.png') }}"
width="100"
alt="{{ filename }} ({{'%0.1f' | format(filesize/1024/1024) }}MB)" />
</a>
<div>
{% endif %}
{% endfor %}
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment