Add new upload history page

This commit is contained in:
2024-06-13 21:17:41 +02:00
parent a5873148d4
commit 97fc5e9c1c
9 changed files with 208 additions and 175 deletions

View File

@@ -0,0 +1,19 @@
{{define "upload_history"}}
<!DOCTYPE html>
<html lang="en">
<head>
{{template "meta_tags" "Upload history"}}
<script>
window.api_endpoint = '{{.APIEndpoint}}';
window.server_hostname = "{{.Hostname}}";
</script>
<script defer src='/res/svelte/upload_history.js?v{{cacheID}}'></script>
</head>
<body>
{{template "menu" .}}
<div id="page_body" class="page_body"></div>
{{template "analytics"}}
</body>
</html>
{{end}}