mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-31 16:00:09 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/d51a2637-5128-4c8a-a18c-a86085d2cb88 aio-interface: do not cache the containers, logs and setup screen as it shows credentials Signed-off-by: Simon L. <szaimen@e.mail.de> fix: address PR review comments - remove inline script (CSP), use default font string Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/62e290a3-94de-4988-aeb8-b577fec135a7 Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com>
24 lines
820 B
Twig
24 lines
820 B
Twig
<html lang="en">
|
|
<head>
|
|
<title>AIO</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="stylesheet" href="style.css?v1">
|
|
<link rel="stylesheet" href="logs.css?v1">
|
|
<link rel="icon" href="img/favicon.png">
|
|
<script src="log-load.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>
|