1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 13:30:26 +00:00
mycorrhiza/admin/view_panel.html

34 lines
1.1 KiB
HTML
Raw Normal View History

{{define "panel title"}}Administrative functions{{end}}
2022-05-18 18:03:36 +00:00
{{define "title"}}{{template "panel title"}}{{end}}
{{define "body"}}
<main class="main-width">
<h1>{{template "panel title"}}</h1>
<section>
<h2>{{block "panel safe section title" .}}Safe section{{end}}</h2>
<ul>
<li><a href="/about">{{block "panel link about" .}}About this wiki{{end}}</a></li>
<li><a href="/update-header-links">{{block "panel update header" .}}Reload header links{{end}}</a></li>
<li><a href="/user-list">{{block "panel link user list" .}}User list{{end}}</a></li>
<li><a href="/admin/users/">{{block "panel users" .}}Manage users{{end}}</a></li>
</ul>
</section>
<section>
<h2>{{block "panel unsafe section title" .}}Unsafe section{{end}}</h2>
<ul>
<li>
<form action="/admin/shutdown" method="POST">
<label>{{block "panel shutdown" .}}Shutdown wiki{{end}}</label>
<input type="submit" class="btn">
</form>
</li>
<li>
<form action="/reindex" method="GET">
<label>{{block "panel reindex hyphae" .}}Reindex hyphae{{end}}</label>
<input type="submit" class="btn">
</form>
</li>
</ul>
</section>
</main>
{{end}}