style(details.html): format with prettier

This commit is contained in:
2025-08-25 22:18:06 +02:00
parent a494b606a5
commit b79f3f3387

View File

@@ -1,36 +1,44 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>judas panel - details</title> <title>judas panel - details</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"> <link
</head> rel="stylesheet"
<body> href="{{ url_for('static', filename='css/style.css') }}"
/>
</head>
<body>
<div id="wrapper"> <div id="wrapper">
<header> <header>
<h1><a href="{{ url_for('index.index') }}">judas</a></h1> <h1><a href="{{ url_for('index.index') }}">judas</a></h1>
<p><a class="button" href="{{ url_for('logout') }}">Logout</a></p> <p><a class="button" href="{{ url_for('logout') }}">Logout</a></p>
</header> </header>
<main> <main>
<div class="button-container"> <div class="button-container">
<p><a href="{{ url_for('panel') }}" class="link">Back to Panel</a></p> <p><a href="{{ url_for('panel') }}" class="link">Back to Panel</a></p>
<h2>{{ pc.id }}</h2> <h2>{{ pc.id }}</h2>
<p><a href="{{ url_for('stream', pc_id=pc.id) }}" class="link">View Stream</a></p> <p>
</div> <a href="{{ url_for('stream', pc_id=pc.id) }}" class="link"
<table class="center-table details-table"> >View Stream</a
<tbody> >
<tr> </p>
<td>Status</td> </div>
<td>{{ pc.status }}</td> <table class="center-table details-table">
</tr> <tbody>
<tr> <tr>
<td>Last Seen</td> <td>Status</td>
<td>{{ pc.last_seen }}</td> <td>{{ pc.status }}</td>
</tr> </tr>
</tbody> <tr>
</table> <td>Last Seen</td>
</main> <td>{{ pc.last_seen }}</td>
</tr>
</tbody>
</table>
</main>
</div> </div>
</body> </body>
</html> </html>