|
2 | 2 | <div class="df ac">
|
3 | 3 | <div class="icon ml-3 mr-3">
|
4 | 4 | {{if eq .Process.Type "request"}}
|
5 |
| - {{svg "octicon-globe" 16 }} |
| 5 | + {{svg "octicon-globe" 16}} |
6 | 6 | {{else if eq .Process.Type "system"}}
|
7 |
| - {{svg "octicon-cpu" 16 }} |
| 7 | + {{svg "octicon-cpu" 16}} |
8 | 8 | {{else if eq .Process.Type "normal"}}
|
9 |
| - {{svg "octicon-terminal" 16 }} |
| 9 | + {{svg "octicon-terminal" 16}} |
10 | 10 | {{else}}
|
11 |
| - {{svg "octicon-code" 16 }} |
| 11 | + {{svg "octicon-code" 16}} |
12 | 12 | {{end}}
|
13 | 13 | </div>
|
14 | 14 | <div class="content f1">
|
15 | 15 | <div class="header">{{.Process.Description}}</div>
|
16 | 16 | <div class="description">{{if ne .Process.Type "none"}}<span title="{{DateFmtLong .Process.Start}}">{{TimeSince .Process.Start .root.locale}}</span>{{end}}</div>
|
17 | 17 | </div>
|
18 | 18 | <div>
|
19 |
| - {{if or (eq .Process.Type "request") (eq .Process.Type "normal") }} |
| 19 | + {{if or (eq .Process.Type "request") (eq .Process.Type "normal")}} |
20 | 20 | <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>
|
21 | 21 | {{end}}
|
22 | 22 | </div>
|
|
29 | 29 | <summary>
|
30 | 30 | <div class="dif content">
|
31 | 31 | <div class="header ml-3">
|
32 |
| - <span class="icon mr-3">{{svg "octicon-code" 16 }}</span>{{.Description}}{{if gt .Count 1}} * {{.Count}}{{end}} |
| 32 | + <span class="icon mr-3">{{svg "octicon-code" 16}}</span>{{.Description}}{{if gt .Count 1}} * {{.Count}}{{end}} |
33 | 33 | </div>
|
34 | 34 | <div class="description">
|
35 | 35 | {{range .Labels}}
|
|
41 | 41 | <div class="list">
|
42 | 42 | {{range .Entry}}
|
43 | 43 | <div class="item df ac">
|
44 |
| - <span class="icon mr-4">{{svg "octicon-dot-fill" 16 }}</span> |
| 44 | + <span class="icon mr-4">{{svg "octicon-dot-fill" 16}}</span> |
45 | 45 | <div class="content f1">
|
46 | 46 | <div class="header"><code>{{.Function}}</code></div>
|
47 | 47 | <div class="description"><code>{{.File}}:{{.Line}}</code></div>
|
|
0 commit comments