22 lines
630 B
HTML
22 lines
630 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Admin | left4me{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<h1>Admin</h1>
|
|
<ul class="link-list">
|
|
<li><a href="/admin/users">Users</a></li>
|
|
<li><a href="/admin/jobs">Jobs</a></li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section class="panel">
|
|
<h2>Runtime</h2>
|
|
<p class="muted">Queue a Steam runtime install/update job for the local host.</p>
|
|
<form method="post" action="/admin/install">
|
|
<input type="hidden" name="csrf_token" value="{{ session.get('csrf_token', '') }}">
|
|
<button type="submit">Install or update runtime</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|