feat: rename details.html -> client_details.html
This commit is contained in:
9
src/judas_server/web/templates/client_details.html
Normal file
9
src/judas_server/web/templates/client_details.html
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Details for client {{ client.id }}</title>
|
||||||
|
</head>
|
||||||
|
<body></body>
|
||||||
|
</html>
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
<!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('index.index') }}">judas</a></h1>
|
|
||||||
<p><a class="button" href="{{ url_for('logout') }}">Logout</a></p>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
<div class="button-container">
|
|
||||||
<p><a href="{{ url_for('panel') }}" class="link">Back to Panel</a></p>
|
|
||||||
<h2>{{ pc.id }}</h2>
|
|
||||||
<p>
|
|
||||||
<a href="{{ url_for('stream', pc_id=pc.id) }}" class="link"
|
|
||||||
>View Stream</a
|
|
||||||
>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<table class="center-table details-table">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>Status</td>
|
|
||||||
<td>{{ pc.status }}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Last Seen</td>
|
|
||||||
<td>{{ pc.last_seen }}</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user