28 lines
493 B
HTML
28 lines
493 B
HTML
|
@include(main/header_admin)
|
||
|
@if(log)
|
||
|
<h1>last {{ log.length }} entries:</h1>
|
||
|
<div class="logwrap">
|
||
|
@each(log as line)
|
||
|
<p>{{ line }}</p>
|
||
|
@endeach
|
||
|
</div>
|
||
|
<style>
|
||
|
div.logwrap {
|
||
|
height: 600px;
|
||
|
overflow-y: scroll;
|
||
|
text-align: left;
|
||
|
direction: rtl;
|
||
|
}
|
||
|
div.logwrap > p {
|
||
|
direction: ltr;
|
||
|
line-height: 0;
|
||
|
}
|
||
|
</style>
|
||
|
<script>
|
||
|
(() => {
|
||
|
const d = document.querySelector("div.logwrap");
|
||
|
d.scrollTop = d.scrollHeight;
|
||
|
})();
|
||
|
</script>
|
||
|
@endif
|
||
|
@include(main/footer)
|