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