mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
01087e9eef
This PR registers requests with the process manager and manages hierarchy within the processes. Git repos are then associated with a context, (usually the request's context) - with sub commands using this context as their base context. Signed-off-by: Andrew Thornton <art27@cantab.net>
21 lines
689 B
Handlebars
21 lines
689 B
Handlebars
<div class="item">
|
|
<div class="df ac">
|
|
<div class="content f1">
|
|
<div class="header">{{.Process.Description}}</div>
|
|
<div class="description"><span title="{{DateFmtLong .Process.Start}}">{{TimeSince .Process.Start .root.Lang}}</span></div>
|
|
</div>
|
|
<div>
|
|
<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>
|
|
</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>
|