2020-02-11 17:02:41 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content user settings repos">
|
2020-02-11 17:02:41 +00:00
|
|
|
{{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">
|
2020-09-25 04:09:23 +00:00
|
|
|
{{if or .allowAdopt .allowDelete}}
|
|
|
|
{{if .Dirs}}
|
|
|
|
<div class="ui middle aligned divided list">
|
|
|
|
{{range $dirI, $dir := .Dirs}}
|
|
|
|
{{ $repo := index $.ReposMap $dir}}
|
|
|
|
<div class="item">
|
|
|
|
<div class="content">
|
|
|
|
{{if $repo}}
|
|
|
|
{{if $repo.IsPrivate}}
|
|
|
|
<span class="text gold icon">{{svg "octicon-lock"}}</span>
|
|
|
|
{{else if $repo.IsFork}}
|
|
|
|
<span class="icon">{{svg "octicon-repo-forked"}}</span>
|
|
|
|
{{else if $repo.IsMirror}}
|
|
|
|
<span class="icon">{{svg "octicon-mirror"}}</span>
|
|
|
|
{{else if $repo.IsTemplate}}
|
|
|
|
<span class="icon">{{svg "octicon-repo-template"}}</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="icon">{{svg "octicon-repo"}}</span>
|
|
|
|
{{end}}
|
|
|
|
<a class="name" href="{{AppSubUrl}}/{{$repo.OwnerName}}/{{$repo.Name}}">{{$repo.OwnerName}}/{{$repo.Name}}</a>
|
|
|
|
<span>{{SizeFmt $repo.Size}}</span>
|
|
|
|
{{if $repo.IsFork}}
|
|
|
|
{{$.i18n.Tr "repo.forked_from"}}
|
|
|
|
<span><a href="{{AppSubUrl}}/{{$repo.BaseRepo.OwnerName}}/{{$repo.BaseRepo.Name}}">{{$repo.BaseRepo.OwnerName}}/{{$repo.BaseRepo.Name}}</a></span>
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
<span class="icon">{{svg "octicon-file-directory"}}</span>
|
|
|
|
<span class="name">{{$.Owner.Name}}/{{$dir}}</span>
|
|
|
|
<div class="right floated content">
|
|
|
|
{{if $.allowAdopt}}
|
|
|
|
<button class="ui button submit tiny green adopt show-modal" data-modal="#adopt-unadopted-modal-{{$dirI}}"><span class="icon">{{svg "octicon-plus"}}</span><span class="label">{{$.i18n.Tr "repo.adopt_preexisting_label"}}</span></button>
|
|
|
|
<div class="ui basic modal" id="adopt-unadopted-modal-{{$dirI}}">
|
2020-12-09 19:03:19 +00:00
|
|
|
{{svg "octicon-x" 16 "close inside"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
<div class="header">
|
|
|
|
<span class="label">{{$.i18n.Tr "repo.adopt_preexisting"}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{$.i18n.Tr "repo.adopt_preexisting_content" $dir}}</p>
|
|
|
|
</div>
|
|
|
|
<form class="ui form" method="POST" action="{{AppSubUrl}}/user/settings/repos/unadopted">
|
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="id" value="{{$dir}}">
|
|
|
|
<input type="hidden" name="action" value="adopt">
|
|
|
|
<div class="actions">
|
|
|
|
<div class="ui red basic inverted cancel button">
|
|
|
|
<i class="remove icon"></i>
|
|
|
|
{{$.i18n.Tr "modal.no"}}
|
|
|
|
</div>
|
|
|
|
<button class="ui green basic inverted ok button">
|
|
|
|
<i class="checkmark icon"></i>
|
|
|
|
{{$.i18n.Tr "modal.yes"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if $.allowDelete}}
|
|
|
|
<button class="ui button submit tiny red delete show-modal" data-modal="#delete-unadopted-modal-{{$dirI}}"><span class="icon">{{svg "octicon-x"}}</span><span class="label">{{$.i18n.Tr "repo.delete_preexisting_label"}}</span></button>
|
|
|
|
<div class="ui basic modal" id="delete-unadopted-modal-{{$dirI}}">
|
2020-12-09 19:03:19 +00:00
|
|
|
{{svg "octicon-x" 16 "close inside"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
<div class="header">
|
|
|
|
<span class="label">{{$.i18n.Tr "repo.delete_preexisting"}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{$.i18n.Tr "repo.delete_preexisting_content" $dir}}</p>
|
|
|
|
</div>
|
|
|
|
<form class="ui form" method="POST" action="{{AppSubUrl}}/user/settings/repos/unadopted">
|
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="id" value="{{$dir}}">
|
|
|
|
<input type="hidden" name="action" value="delete">
|
|
|
|
<div class="actions">
|
|
|
|
<div class="ui red basic inverted cancel button">
|
|
|
|
<i class="remove icon"></i>
|
|
|
|
{{$.i18n.Tr "modal.no"}}
|
|
|
|
</div>
|
|
|
|
<button class="ui green basic inverted ok button">
|
|
|
|
<i class="checkmark icon"></i>
|
|
|
|
{{$.i18n.Tr "modal.yes"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2020-02-11 17:02:41 +00:00
|
|
|
</div>
|
2020-09-25 04:09:23 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
|
|
|
{{.i18n.Tr "settings.repos_none"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-02-11 17:02:41 +00:00
|
|
|
{{else}}
|
2020-09-25 04:09:23 +00:00
|
|
|
{{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"}}</span>
|
|
|
|
{{else if .IsFork}}
|
|
|
|
<span class="iconFloat">{{svg "octicon-repo-forked"}}</span>
|
|
|
|
{{else if .IsMirror}}
|
|
|
|
<span class="iconFloat">{{svg "octicon-mirror"}}</span>
|
|
|
|
{{else if .IsTemplate}}
|
|
|
|
<span class="iconFloat">{{svg "octicon-repo-template"}}</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="iconFloat">{{svg "octicon-repo"}}</span>
|
|
|
|
{{end}}
|
2020-10-30 16:27:01 +00:00
|
|
|
<a class="name" href="{{AppSubUrl}}/{{.OwnerName}}/{{.Name}}">{{.OwnerName}}/{{.Name}}</a>
|
2020-09-25 04:09:23 +00:00
|
|
|
<span>{{SizeFmt .Size}}</span>
|
|
|
|
{{if .IsFork}}
|
|
|
|
{{$.i18n.Tr "repo.forked_from"}}
|
|
|
|
<span><a href="{{AppSubUrl}}/{{.BaseRepo.OwnerName}}/{{.BaseRepo.Name}}">{{.BaseRepo.OwnerName}}/{{.BaseRepo.Name}}</a></span>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
|
|
|
{{.i18n.Tr "settings.repos_none"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-02-11 17:02:41 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
|
|
|
<div class="ui icon header">
|
2020-10-21 21:07:33 +00:00
|
|
|
{{svg "octicon-trashcan"}}
|
2020-02-11 17:02:41 +00:00
|
|
|
{{.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" .}}
|