2023-07-08 05:19:00 +02:00
|
|
|
{{range .RecentlyPushedNewBranches}}
|
|
|
|
<div class="ui positive message gt-df gt-ac">
|
|
|
|
<div class="gt-f1">
|
2023-09-25 14:42:40 +02:00
|
|
|
{{$timeSince := TimeSince .CommitTime.AsTime ctx.Locale}}
|
2024-01-21 15:18:24 +01:00
|
|
|
{{$repo := .GetRepo $.Context}}
|
|
|
|
{{$name := .Name}}
|
|
|
|
{{if ne $repo.ID $.Repository.ID}}
|
|
|
|
{{$name = (print $repo.FullName ":" .Name)}}
|
|
|
|
{{end}}
|
|
|
|
{{$branchLink := (print ($repo.Link) "/src/branch/" (PathEscapeSegments .Name))}}
|
2024-02-25 15:02:20 +01:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.recently_pushed_new_branches" $name $timeSince $branchLink}}
|
2023-07-08 05:19:00 +02:00
|
|
|
</div>
|
2024-01-21 15:18:24 +01:00
|
|
|
<a role="button" class="ui compact positive button gt-m-0" href="{{$.Repository.ComposeBranchCompareURL $.Repository.BaseRepo $name}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.compare_changes"}}
|
2023-07-08 05:19:00 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|