summaryrefslogtreecommitdiffstats
path: root/templates/repo/commit_statuses.tmpl
blob: aabbc88c7b59b4eacf4479f83b4fce16b413f332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<a class="ui link commit-statuses-trigger">{{template "repo/commit_status" .Status}}</a>
<div class="ui popup very wide fixed basic commit-statuses">
	<div class="ui relaxed list divided">
		{{range .Statuses}}
			<div class="ui item singular-status df">
				<span>{{template "repo/commit_status" .}}</span>
				<span class="ui f1">{{.Context}} <span class="text grey">{{.Description}}</span></span>
				{{if .TargetURL}}
					<div class="ui"><a href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.locale.Tr "repo.pulls.status_checks_details"}}</a></div>
				{{end}}
			</div>
		{{end}}
	</div>
</div>