mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			456 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			456 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{if .dependencies}}
 | |
| <p><strong>{{.title}}</strong></p>
 | |
| <table class="ui single line very basic table">
 | |
| 	<thead>
 | |
| 		<tr>
 | |
| 			<th class="eleven wide">{{ctx.Locale.Tr "packages.dependency.id"}}</th>
 | |
| 			<th class="five wide">{{ctx.Locale.Tr "packages.dependency.version"}}</th>
 | |
| 		</tr>
 | |
| 	</thead>
 | |
| 	<tbody>
 | |
| 		{{range $dependency, $version := .dependencies}}
 | |
| 		<tr>
 | |
| 			<td>{{$dependency}}</td>
 | |
| 			<td>{{$version}}</td>
 | |
| 		</tr>
 | |
| 		{{end}}
 | |
| 	</tbody>
 | |
| </table>
 | |
| {{end}}
 |