Implementation of all repositories of a user from user->settings (#1740)
* Implementation of all repositories of a user from user->settings * Update message when no repository found * Update according to comments * Change UI to have a better look * improved user repositories UItokarchuk/v1.17
parent
1739e84ac0
commit
e5d80b7090
@ -0,0 +1,53 @@ |
|||||||
|
{{template "base/head" .}} |
||||||
|
<div class="user settings"> |
||||||
|
{{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" .}} |
Loading…
Reference in new issue