2021-11-30 15:06:32 -05:00
|
|
|
<div class="item">
|
2023-02-13 12:59:59 -05:00
|
|
|
<div class="gt-df gt-ac">
|
|
|
|
<div class="icon gt-ml-3 gt-mr-3">{{if eq .Process.Type "request"}}{{svg "octicon-globe" 16}}{{else if eq .Process.Type "system"}}{{svg "octicon-cpu" 16}}{{else}}{{svg "octicon-terminal" 16}}{{end}}</div>
|
|
|
|
<div class="content gt-f1">
|
2021-11-30 15:06:32 -05:00
|
|
|
<div class="header">{{.Process.Description}}</div>
|
2022-06-27 16:58:46 -04:00
|
|
|
<div class="description"><span title="{{DateFmtLong .Process.Start}}">{{TimeSince .Process.Start .root.locale}}</span></div>
|
2021-11-30 15:06:32 -05:00
|
|
|
</div>
|
|
|
|
<div>
|
2022-03-31 13:01:43 -04:00
|
|
|
{{if ne .Process.Type "system"}}
|
|
|
|
<a class="delete-button icon" href="" data-url="{{.root.Link}}/cancel/{{.Process.PID}}" data-id="{{.Process.PID}}" data-name="{{.Process.Description}}">{{svg "octicon-trash" 16 "text-red"}}</a>
|
|
|
|
{{end}}
|
2021-11-30 15:06:32 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{$children := .Process.Children}}
|
|
|
|
{{if $children}}
|
|
|
|
<div class="divided list">
|
|
|
|
{{range $children}}
|
|
|
|
{{template "admin/process-row" dict "Process" . "root" $.root}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|