aboutsummaryrefslogtreecommitdiffstats
path: root/templates/admin/process-row.tmpl
blob: b97d0fc8dc712b4111eedfd7637074252c584ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="item">
	<div class="df ac">
		<div class="icon ml-3 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 f1">
			<div class="header">{{.Process.Description}}</div>
			<div class="description"><span title="{{DateFmtLong .Process.Start}}">{{TimeSince .Process.Start .root.locale}}</span></div>
		</div>
		<div>
			{{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}}
		</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>