chore(release): 0.1.0 #4

Merged
pufereq merged 53 commits from release/0.1.0 into main 2025-08-09 15:03:45 +00:00
9 changed files with 299 additions and 41 deletions
Showing only changes of commit fe82dad557 - Show all commits

View File

@@ -13,15 +13,12 @@
<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>
<h2>Details for PC ID: {{ pc.id }}</h2> <div class="button-container">
<h3><a href="{{ url_for('stream', pc_id=pc.id) }}">View Stream</a></h3> <p><a href="{{ url_for('panel') }}" class="link">Back to Panel</a></p>
<table border="1"> <h2>Details for PC ID: {{ pc.id }}</h2>
<thead> <p><a href="{{ url_for('stream', pc_id=pc.id) }}" class="link">View Stream</a></p>
<tr> </div>
<th>Attribute</th> <table class="center-table details-table">
<th>Value</th>
</tr>
</thead>
<tbody> <tbody>
<tr> <tr>
<td>Status</td> <td>Status</td>
@@ -33,7 +30,6 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
<p><a href="{{ url_for('panel') }}">Back to Panel</a></p>
</main> </main>
</div> </div>
</body> </body>