forked from gitea/gitea
		
	 e61b390d54
			
		
	
	
		e61b390d54
		
			
		
	
	
	
	
		
			
			Refer: https://github.com/go-gitea/gitea/pull/18135#issuecomment-1003246099 Now we have a unique and simple `TrN`, and make the fix of PR #18135 also use the better `TrN` logic.
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| <div class="ui segments repository-summary{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats }} repository-summary-language-stats{{end}} mt-3">
 | |
| 	<div class="ui segment sub-menu repository-menu">
 | |
| 		<div class="ui two horizontal center link list">
 | |
| 			{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}}
 | |
| 				<div class="item{{if .PageIsCommits}} active{{end}}">
 | |
| 					<a class="ui" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">{{svg "octicon-history"}} <b>{{.CommitsCount}}</b> {{.i18n.TrN .CommitsCount "repo.commit" "repo.commits"}}</a>
 | |
| 				</div>
 | |
| 				<div class="item{{if .PageIsBranches}} active{{end}}">
 | |
| 					<a class="ui" href="{{.RepoLink}}/branches">{{svg "octicon-git-branch"}} <b>{{.BranchesCount}}</b> {{.i18n.TrN .BranchesCount "repo.branch" "repo.branches"}}</a>
 | |
| 				</div>
 | |
| 				{{if $.Permission.CanRead $.UnitTypeCode}}
 | |
| 					<div class="item">
 | |
| 						<a class="ui" href="{{.RepoLink}}/tags">{{svg "octicon-tag"}} <b>{{.NumTags}}</b> {{.i18n.TrN .NumTags "repo.tag" "repo.tags"}}</a>
 | |
| 					</div>
 | |
| 				{{end}}
 | |
| 				<div class="item">
 | |
| 					<span class="ui">{{svg "octicon-database"}} <b>{{FileSize .Repository.Size}}</b></span>
 | |
| 				</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| 	{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats }}
 | |
| 	<div class="ui segment sub-menu language-stats-details" style="display: none">
 | |
| 		<div class="ui horizontal center link list">
 | |
| 			{{range .LanguageStats}}
 | |
| 			<div class="item df ac jc">
 | |
| 				<i class="color-icon mr-3" style="background-color: {{ .Color }}"></i>
 | |
| 				<span class="bold mr-3">
 | |
| 					{{if eq .Language "other" }}
 | |
| 						{{ $.i18n.Tr "repo.language_other" }}
 | |
| 					{{else}}
 | |
| 						{{ .Language }}
 | |
| 					{{end}}
 | |
| 				</span>
 | |
| 				{{ .Percentage }}%
 | |
| 			</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| 	<a class="ui segment language-stats">
 | |
| 		{{range .LanguageStats}}
 | |
| 		<div class="bar" style="width: {{ .Percentage }}%; background-color: {{ .Color }}"> </div>
 | |
| 		{{end}}
 | |
| 	</a>
 | |
| 	{{end}}
 | |
| </div>
 |