safesight-control/internal/web/ui/templates/templates.html
2026-01-10 21:30:28 +08:00

21 lines
488 B
HTML

{{define "templates"}}
<div class="card">
<h2>模板列表</h2>
<div class="table-wrap" style="margin-top:10px">
<table>
<thead>
<tr><th>名称</th><th>Schema</th></tr>
</thead>
<tbody>
{{range .Templates}}
<tr>
<td><a class="mono" href="/ui/templates/{{.Name}}">{{.Name}}</a></td>
<td><pre style="margin:0">{{json .Schema}}</pre></td>
</tr>
{{end}}
</tbody>
</table>
</div>
</div>
{{end}}