Commit b512b059 by Maxime

Improve logs rendering

parent 9239564c
Pipeline #108 passed with stage
in 52 seconds
......@@ -10,7 +10,12 @@
</ul>
<div class="tab-content">
{% for log in logs %}
<div role="tabpanel" class="tab-pane" id="{{ log.name }}">{{ log.content }}</div>
<div role="tabpanel" class="tab-pane" id="{{ log.name }}">
{% for line in log.content %}
{{ line }}
<br>
{% endfor %}
</div>
{% endfor %}
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment