mirror of https://github.com/go-gitea/gitea
22 lines
1.2 KiB
Handlebars
22 lines
1.2 KiB
Handlebars
{{if and .UpstreamDivergingInfo (or .UpstreamDivergingInfo.BaseHasNewCommits .UpstreamDivergingInfo.CommitsBehind)}}
|
|
<div class="ui message flex-text-block">
|
|
<div class="tw-flex-1">
|
|
{{$upstreamLink := printf "%s/src/branch/%s" .Repository.BaseRepo.Link (.Repository.BaseRepo.DefaultBranch|PathEscapeSegments)}}
|
|
{{$upstreamHtml := HTMLFormat `<a href="%s">%s:%s</a>` $upstreamLink .Repository.BaseRepo.FullName .Repository.BaseRepo.DefaultBranch}}
|
|
{{if .UpstreamDivergingInfo.CommitsBehind}}
|
|
{{ctx.Locale.TrN .UpstreamDivergingInfo.CommitsBehind "repo.pulls.upstream_diverging_prompt_behind_1" "repo.pulls.upstream_diverging_prompt_behind_n" .UpstreamDivergingInfo.CommitsBehind $upstreamHtml}}
|
|
{{else}}
|
|
{{ctx.Locale.Tr "repo.pulls.upstream_diverging_prompt_base_newer" $upstreamHtml}}
|
|
{{end}}
|
|
</div>
|
|
{{if .CanWriteCode}}
|
|
<button class="ui compact primary button tw-m-0 link-action"
|
|
data-modal-confirm-header="{{ctx.Locale.Tr "repo.pulls.upstream_diverging_merge"}}"
|
|
data-modal-confirm-content="{{ctx.Locale.Tr "repo.pulls.upstream_diverging_merge_confirm" .BranchName}}"
|
|
data-url="{{.Repository.Link}}/branches/merge-upstream?branch={{.BranchName}}">
|
|
{{ctx.Locale.Tr "repo.pulls.upstream_diverging_merge"}}
|
|
</button>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|