mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-08 23:02:10 +00:00
Sub-templates have direct access to `ctx.RootData` (the root data map), so there is no need for callers to explicitly pass it as `ctxData` via `dict`. Also fix #37569 by the way --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: wxiaoguang <2114189+wxiaoguang@users.noreply.github.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
23 lines
646 B
Handlebars
23 lines
646 B
Handlebars
{{template "admin/layout_head" (dict "pageClass" "admin monitor")}}
|
|
<div class="admin-setting-content">
|
|
|
|
{{template "admin/trace_tabs" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
{{printf "%d Goroutines" .GoroutineCount}}{{/* Goroutine is non-translatable*/}}
|
|
{{- if .ProcessCount -}}, {{ctx.Locale.Tr "admin.monitor.processes_count" .ProcessCount}}{{- end -}}
|
|
</h4>
|
|
|
|
{{if .ProcessStacks}}
|
|
<div class="ui attached segment">
|
|
<div class="ui relaxed divided list">
|
|
{{range .ProcessStacks}}
|
|
{{template "admin/stacktrace-row" dict "Process" . "root" $}}
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "admin/layout_footer" .}}
|