* rm wrong closing tag * Update templates/repo/sub_menu.tmpl Co-authored-by: John Olheiser <john.olheiser@gmail.com> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| <div class="ui segments repository-summary">
 | |
| 	<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{{if .IsViewBranch}}/branch{{else if .IsViewTag}}/tag{{else if .IsViewCommit}}/commit{{end}}/{{EscapePound .BranchName}}">{{svg "octicon-history" 16}} <b>{{.CommitsCount}}</b> {{.i18n.Tr (TrN .i18n.Lang .CommitsCount "repo.commit" "repo.commits") }}</a>
 | |
| 				</div>
 | |
| 			{{end}}
 | |
| 			{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) }}
 | |
| 				<div class="item{{if .PageIsBranches}} active{{end}}">
 | |
| 					<a class="ui" href="{{.RepoLink}}/branches/">{{svg "octicon-git-branch" 16}} <b>{{.BranchesCount}}</b> {{.i18n.Tr (TrN .i18n.Lang .BranchesCount "repo.branch" "repo.branches") }}</a>
 | |
| 				</div>
 | |
| 				<div class="item">
 | |
| 					<span class="ui">{{svg "octicon-database" 16}} <b>{{SizeFmt .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">
 | |
| 				<i class="color-icon" style="background-color: {{ .Color }}"></i>
 | |
| 				<span class="ui"><b>
 | |
| 				{{if eq .Language "other" }}
 | |
| 					{{ $.i18n.Tr "repo.language_other" }}
 | |
| 				{{else}}
 | |
| 					{{ .Language }}
 | |
| 				{{end}}
 | |
| 				</b> {{ .Percentage }}%</span>
 | |
| 			</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>
 |