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