You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							53 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							53 lines
						
					
					
						
							1.6 KiB
						
					
					
				| {{template "base/head" .}}
 | |
| <div class="user settings repos">
 | |
| 	{{template "user/settings/navbar" .}}
 | |
| 	<div class="ui container">
 | |
| 		{{template "base/alert" .}}
 | |
| 		<h4 class="ui top attached header">
 | |
| 			{{.i18n.Tr "settings.repos"}}
 | |
| 		</h4>
 | |
| 		<div class="ui attached segment">
 | |
| 			{{if .Repos}}
 | |
| 				<div class="ui middle aligned divided list">
 | |
| 					{{range .Repos}}
 | |
| 					<div class="item">
 | |
| 						<div class="content">
 | |
| 							{{if .IsPrivate}}
 | |
| 								<span class="text gold iconFloat">{{svg "octicon-lock" 16}}</span>
 | |
| 							{{else if .IsFork}}
 | |
| 								<span class="iconFloat">{{svg "octicon-repo-forked" 16}}</span>
 | |
| 							{{else if .IsMirror}}
 | |
| 								<span class="iconFloat">{{svg "octicon-mirror" 16}}</span>
 | |
| 							{{else}}
 | |
| 								<span class="iconFloat">{{svg "octicon-repo" 16}}</span>
 | |
| 							{{end}}
 | |
| 							<a class="name" href="{{AppSubUrl}}/{{$.Owner.Name}}/{{.Name}}">{{$.Owner.Name}}/{{.Name}}</a>
 | |
| 							<span>{{SizeFmt .Size}}</span>
 | |
| 							{{if .IsFork}}
 | |
| 								{{$.i18n.Tr "repo.forked_from"}}
 | |
| 								<span><a href="{{AppSubUrl}}/{{.BaseRepo.Owner.Name}}/{{.BaseRepo.Name}}">{{.BaseRepo.Owner.Name}}/{{.BaseRepo.Name}}</a></span>
 | |
| 							{{end}}
 | |
| 							</div>
 | |
| 						</div>
 | |
| 					{{end}}
 | |
| 				</div>
 | |
| 			{{else}}
 | |
| 				<div class="item">
 | |
| 					{{.i18n.Tr "settings.repos_none"}}
 | |
| 				</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| 
 | |
| <div class="ui small basic delete modal">
 | |
| 	<div class="ui icon header">
 | |
| 		<i class="trash icon"></i>
 | |
| 		{{.i18n.Tr "settings.remove_account_link"}}
 | |
| 	</div>
 | |
| 	<div class="content">
 | |
| 		<p>{{.i18n.Tr "settings.remove_account_link_desc"}}</p>
 | |
| 	</div>
 | |
| 	{{template "base/delete_modal_actions" .}}
 | |
| </div>
 | |
| {{template "base/footer" .}}
 | |
| 
 |