mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-29 15:00:09 +00:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
27 lines
862 B
Twig
27 lines
862 B
Twig
<!--
|
|
SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="stylesheet" href="logs.css">
|
|
<script src="log-view.js?v1"></script>
|
|
</head>
|
|
<body data-container-id="{{ id }}">
|
|
<div id="floating-box">
|
|
<div class="loader"></div>
|
|
<div id="autoloading-box">
|
|
<div>
|
|
Automatic loading of new log data is
|
|
<span id="autoloading-status">enabled</span>.
|
|
</div>
|
|
<button id="autoloading-control">Disable</button>
|
|
</div>
|
|
</div>
|
|
<pre>{{ logContent }}</pre>
|
|
</body>
|
|
</html>
|