feat(details.html): add details page template

This commit is contained in:
2025-06-15 22:39:10 +02:00
parent 1b39dce698
commit e4620c81b2

View File

@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>judas panel - details</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div id="wrapper">
<header>
<h1><a href="{{ url_for('panel') }}">judas panel</a></h1>
<p>Welcome, {{ username }}! <a href="{{ url_for('logout') }}">Logout</a></p>
</header>
<main>
<h2>Details for PC ID: {{ pc.id }}</h2>
<h3><a href="{{ url_for('stream', pc_id=pc.id) }}">View Stream</a></h3>
<table border="1">
<thead>
<tr>
<th>Attribute</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Status</td>
<td>{{ pc.status }}</td>
</tr>
<tr>
<td>Last Seen</td>
<td>{{ pc.last_seen }}</td>
</tr>
</tbody>
</table>
<p><a href="{{ url_for('panel') }}">Back to Panel</a></p>
</main>
</div>
</body>
</html>