summaryrefslogtreecommitdiffstats
path: root/templates/repo/actions/list.tmpl
blob: 15f0d607a3c2966ba0b49b5c7cd832b13ebb6760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{template "base/head" .}}
<div class="page-content repository">
	{{template "repo/header" .}}

	<div class="ui container">
		<div class="ui grid">
			<div class="four wide column">
				<div class="ui fluid vertical menu">
					<a class="item{{if not $.CurWorkflow}} active{{end}}" href="{{$.Link}}">{{.locale.Tr "actions.runs.all_workflows"}}</a>
					<div class="divider"></div>
					{{range .workflows}}
						<a class="item{{if eq .Entry.Name $.CurWorkflow}} active{{end}}" href="{{$.Link}}?workflow={{.Entry.Name}}">{{.Entry.Name}}
							{{if .ErrMsg}}
								<span data-tooltip-content="{{.ErrMsg}}">
									<i class="warning icon red"></i>
								</span>
							{{end}}
						</a>
					{{end}}
				</div>
			</div>
			<div class="twelve wide column content">
				<div id="issue-filters" class="ui stackable grid">
					<div class="six wide column">
						{{template "repo/actions/openclose" .}}
					</div>
				</div>
				{{template "repo/actions/runs_list" .}}
			</div>
		</div>
	</div>
</div>
{{template "base/footer" .}}