2024-01-25 02:40:14 +00:00
|
|
|
{{ template "base" . }}
|
|
|
|
{{ define "title" }}Admin - General{{ end }}
|
|
|
|
{{ define "header" }}<a class="whitespace-pre" href="./admin">Admin - General</a>{{ end }}
|
|
|
|
{{ define "content" }}
|
2024-01-29 03:11:36 +00:00
|
|
|
<div class="w-full flex flex-col gap-4 grow">
|
|
|
|
<div class="flex flex-col gap-2 grow p-4 rounded shadow-lg bg-white dark:bg-gray-700 text-gray-500 dark:text-white">
|
|
|
|
<p class="text-lg font-semibold mb-2">Backup & Restore</p>
|
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
<form class="flex justify-between" action="./admin" method="POST">
|
|
|
|
<input type="text" name="action" value="BACKUP" class="hidden" />
|
|
|
|
<div class="flex gap-8 items-center">
|
|
|
|
<div>
|
|
|
|
<input type="checkbox" id="backup_covers" name="backup_types" value="COVERS" />
|
|
|
|
<label for="backup_covers">Covers</label>
|
2024-01-25 02:40:14 +00:00
|
|
|
</div>
|
2024-01-29 03:11:36 +00:00
|
|
|
<div>
|
|
|
|
<input type="checkbox"
|
|
|
|
id="backup_documents"
|
|
|
|
name="backup_types"
|
|
|
|
value="DOCUMENTS" />
|
|
|
|
<label for="backup_documents">Documents</label>
|
2024-01-25 02:40:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button type="submit"
|
2024-01-29 03:11:36 +00:00
|
|
|
class="w-40 px-10 py-2 text-base font-semibold text-center text-white transition duration-200 ease-in bg-black shadow-md hover:text-black hover:bg-white focus:outline-none focus:ring-2">
|
|
|
|
<span class="w-full">Backup</span>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
<form method="POST"
|
|
|
|
enctype="multipart/form-data"
|
|
|
|
action="./admin"
|
|
|
|
class="flex justify-between grow">
|
|
|
|
<input type="text" name="action" value="RESTORE" class="hidden" />
|
|
|
|
<div class="flex items-center w-1/2">
|
|
|
|
<input type="file" accept=".zip" name="restore_file" class="w-full" />
|
|
|
|
</div>
|
|
|
|
<button type="submit"
|
|
|
|
class="w-40 px-10 py-2 text-base font-semibold text-center text-white transition duration-200 ease-in bg-black shadow-md hover:text-black hover:bg-white focus:outline-none focus:ring-2">
|
|
|
|
<span class="w-full">Restore</span>
|
2024-01-25 02:40:14 +00:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2024-01-29 03:11:36 +00:00
|
|
|
{{ if .PasswordErrorMessage }}
|
|
|
|
<span class="text-red-400 text-xs">{{ .PasswordErrorMessage }}</span>
|
|
|
|
{{ else if .PasswordMessage }}
|
|
|
|
<span class="text-green-400 text-xs">{{ .PasswordMessage }}</span>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col grow p-4 rounded shadow-lg bg-white dark:bg-gray-700 text-gray-500 dark:text-white">
|
|
|
|
<p class="text-lg font-semibold">Tasks</p>
|
|
|
|
<table class="min-w-full bg-white dark:bg-gray-700 text-sm">
|
|
|
|
<tbody class="text-black dark:text-white">
|
|
|
|
<tr>
|
|
|
|
<td class="pl-0">
|
|
|
|
<p>Metadata Matching</p>
|
|
|
|
</td>
|
|
|
|
<td class="py-2 float-right">
|
|
|
|
<form action="./admin" method="POST">
|
|
|
|
<input type="text" name="action" value="METADATA_MATCH" class="hidden" />
|
|
|
|
<button type="submit"
|
|
|
|
class="w-40 px-10 py-2 text-base font-semibold text-center text-white transition duration-200 ease-in bg-black shadow-md hover:text-black hover:bg-white focus:outline-none focus:ring-2">
|
|
|
|
<span class="w-full">Run</span>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<p>Cache Tables</p>
|
|
|
|
</td>
|
|
|
|
<td class="py-2 float-right">
|
|
|
|
<form action="./admin" method="POST">
|
|
|
|
<input type="text" name="action" value="CACHE_TABLES" class="hidden" />
|
|
|
|
<button type="submit"
|
|
|
|
class="w-40 px-10 py-2 text-base font-semibold text-center text-white transition duration-200 ease-in bg-black shadow-md hover:text-black hover:bg-white focus:outline-none focus:ring-2">
|
|
|
|
<span class="w-full">Run</span>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2024-01-25 02:40:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|