7 lines
134 B
HTML
7 lines
134 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<h3>Log</h3>
|
||
|
<pre>
|
||
|
{% for line in content %}{{ line }}{% endfor %}
|
||
|
</pre>
|
||
|
{% endblock %}
|