mirror of https://git.48k.eu/ogcp
26 lines
513 B
HTML
26 lines
513 B
HTML
{% 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 %}
|