qutebrowser/qutebrowser/html/log.html

46 lines
677 B
HTML
Raw Normal View History

{% extends "base.html" %}
2014-08-29 07:38:07 +02:00
{% block script %}
window.onload=toBottom;
function toBottom() {
window.scrollTo(0, document.body.scrollHeight);
}
{% endblock %}
{% block style %}
body {
background-color: black;
color: white;
font-size: 11px;
}
table {
border: 1px solid grey;
border-collapse: collapse;
}
pre {
margin: 2px;
}
th, td {
border: 1px solid grey;
padding-left: 5px;
padding-right: 5px;
}
{% endblock %}
{% block content %}
{{ super() }}
{% if content %}
<table>
{{ content | safe() }}
</table>
{% elif content is not none %}
<p>No messages to show.</p>
{% else %}
<p>Log output was disabled.</p>
{% endif %}
{% endblock %}