Files
core/ui/templates/dashboard.gohtml
T

17 lines
347 B
Go Template
Raw Normal View History

2026-04-02 10:57:36 -04:00
{{define "content"}}
<script>
window.CurrentTab = "{{.CurrentTab}}";
</script>
{{template "dash_tabs" .}}
2026-04-29 10:36:05 -04:00
{{block "pro_risk_tab_content" .}}{{end}}
2026-04-02 10:57:36 -04:00
<div class="tab-pane active">
{{template "dash_table" .}}
</div>
{{template "dash_modals" .}}
<script src="/static/dashboard.js"></script>
{{end}}