f0ckv2/views/admin/log.html
2021-12-04 12:19:47 +01:00

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)