giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
19 lines
705 B
Handlebars
19 lines
705 B
Handlebars
{{/* Template Attributes:
|
|
* RecentBranchesPromptData
|
|
*/}}
|
|
{{$data := .RecentBranchesPromptData}}
|
|
{{if $data}}
|
|
{{range $recentBranch := $data.RecentlyPushedNewBranches}}
|
|
<div class="ui positive message flex-text-block">
|
|
<div class="tw-flex-1">
|
|
{{$timeSince := DateUtils.TimeSince $recentBranch.PushedTime}}
|
|
{{$branchLink := HTMLFormat `<a href="%s">%s</a>` $recentBranch.BranchLink .BranchDisplayName}}
|
|
{{ctx.Locale.Tr "repo.pulls.recently_pushed_new_branches" $branchLink $timeSince}}
|
|
</div>
|
|
<a role="button" class="ui compact green button" href="{{QueryBuild $recentBranch.BranchCompareURL "expand" 1}}">
|
|
{{ctx.Locale.Tr "repo.pulls.compare_changes"}}
|
|
</a>
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|