mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	This PR will display a pull request creation hint on the repository home page when there are newly created branches with no pull request. Only the recent 6 hours and 2 updated branches will be displayed. Inspired by #14003 Replace #14003 Resolves #311 Resolves #13196 Resolves #23743 co-authored by @kolaente
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			516 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			516 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{range .RecentlyPushedNewBranches}}
 | |
| 	<div class="ui positive message gt-df gt-ac">
 | |
| 		<div class="gt-f1">
 | |
| 			{{$timeSince := TimeSince .UpdatedUnix.AsTime $.locale}}
 | |
| 			{{$.locale.Tr "repo.pulls.recently_pushed_new_branches" (PathEscapeSegments .Name) $timeSince | Safe}}
 | |
| 		</div>
 | |
| 		<a aria-role="button" class="ui compact positive button gt-m-0" href="{{$.Repository.ComposeBranchCompareURL $.Repository.BaseRepo (PathEscapeSegments .Name)}}">
 | |
| 			{{$.locale.Tr "repo.pulls.compare_changes"}}
 | |
| 		</a>
 | |
| 	</div>
 | |
| {{end}}
 |