Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
946 B
23 lines
946 B
<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.i18n.Lang}}</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>
|
|
|