099372d76c
* moved avatar to profile page * combined password change, email and account deletion into account settings page * combined totp, access tokens, linked accounts and openid into security settings page * move access tokens to applications settings page * small change to restart drone build * fix change avatar url on profile page * redirect old settings urls to new ones * enforce only one autofocus attribute on settings pages * set correct redirect status code * fmt fix
53 lines
1.7 KiB
Cheetah
53 lines
1.7 KiB
Cheetah
{{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"><i class="octicon octicon-lock"></i></span>
|
|
{{else if .IsFork}}
|
|
<span class="iconFloat"><i class="octicon octicon-repo-forked"></i></span>
|
|
{{else if .IsMirror}}
|
|
<span class="iconFloat"><i class="octicon octicon-repo-clone"></i></span>
|
|
{{else}}
|
|
<span class="iconFloat"><i class="octicon octicon-repo"></i></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" .}}
|