blob: a3f252cc7ebdd033b2ef7bf1b29188ef390e745a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends 'commands.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block nav_logs %} active{% endblock %}
{% block nav_logs_log %} active{% endblock %}
{% block content %}
<h2 class="mx-5 subhead-heading">{{_('Client log')}}</h2>
<style>
/* Prevent overflow */
pre {
max-width: 100%;
overflow: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
</style>
<pre>{{ log }}</pre>
{% endblock %}
|