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.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							689 B
						
					
					
				
			
		
		
	
	
							20 lines
						
					
					
						
							689 B
						
					
					
				<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>
 | 
						|
 |