2023-07-08 05:19:00 +02:00
|
|
|
{{range .RecentlyPushedNewBranches}}
|
2024-06-04 09:14:24 +02:00
|
|
|
<div class="ui positive message tw-flex tw-items-center tw-gap-2">
|
|
|
|
<div class="tw-flex-1 tw-break-anywhere">
|
2024-11-04 12:30:00 +01:00
|
|
|
{{$timeSince := DateUtils.TimeSince .CommitTime}}
|
2024-05-21 19:00:35 +02:00
|
|
|
{{$branchLink := HTMLFormat `<a href="%s">%s</a>` .BranchLink .BranchDisplayName}}
|
2024-03-06 12:25:00 +01:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.recently_pushed_new_branches" $branchLink $timeSince}}
|
2023-07-08 05:19:00 +02:00
|
|
|
</div>
|
2024-05-21 19:00:35 +02:00
|
|
|
<a role="button" class="ui compact green button tw-m-0" href="{{.BranchCompareURL}}">
|
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}}
|