feat(backend): implement task creation and admin web

This commit is contained in:
QiuSW
2026-07-26 14:03:32 +08:00
parent 2b265c92fc
commit c5d3b215ff
58 changed files with 8773 additions and 83 deletions
@@ -0,0 +1,19 @@
{{define "error"}}
<!doctype html>
<html lang="zh-CN">
<head>
<title>{{.Page.Title}} - 采购任务管理</title>
{{template "document-head" .}}
</head>
<body>
{{template "site-header" .}}
<main id="main-content" class="page narrow-page">
<section class="error-page" role="alert">
<h1>{{.Heading}}</h1>
<p>{{.Message}}</p>
<a class="button primary" href="/tasks">返回任务列表</a>
</section>
</main>
</body>
</html>
{{end}}