2023-04-23 10:21:21 +00:00
|
|
|
{{template "user/settings/layout_head" (dict "ctxData" . "pageClass" "user settings repos")}}
|
|
|
|
<div class="user-setting-content">
|
2020-02-11 17:02:41 +00:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.repos"}}
|
2020-02-11 17:02:41 +00:00
|
|
|
</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}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{$repo := index $.ReposMap $dir}}
|
2023-04-28 01:48:41 +00:00
|
|
|
<div class="item {{if not $repo}}gt-py-2{{end}}">{{/* if not repo, then there are "adapt" buttons, so the padding shouldn't be that default large*/}}
|
2020-09-25 04:09:23 +00:00
|
|
|
<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}}
|
2023-06-22 01:59:49 +00:00
|
|
|
<a class="muted name" href="{{$repo.Link}}">{{$repo.OwnerName}}/{{$repo.Name}}</a>
|
2023-06-28 22:41:02 +00:00
|
|
|
<span class="text light-3" {{if not (eq $repo.Size 0)}} data-tooltip-content="{{$repo.SizeDetailsString}}"{{end}}>{{FileSize $repo.Size}}</span>
|
2020-09-25 04:09:23 +00:00
|
|
|
{{if $repo.IsFork}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.forked_from"}}
|
2021-11-16 18:18:25 +00:00
|
|
|
<span><a href="{{$repo.BaseRepo.Link}}">{{$repo.BaseRepo.OwnerName}}/{{$repo.BaseRepo.Name}}</a></span>
|
2020-09-25 04:09:23 +00:00
|
|
|
{{end}}
|
|
|
|
{{else}}
|
2023-04-28 01:48:41 +00:00
|
|
|
<span class="icon gt-dib gt-pt-3">{{svg "octicon-file-directory-fill"}}</span>
|
|
|
|
<span class="name gt-dib gt-pt-3">{{$.ContextUser.Name}}/{{$dir}}</span>
|
2023-08-31 02:29:59 +00:00
|
|
|
<div class="gt-float-right">
|
2020-09-25 04:09:23 +00:00
|
|
|
{{if $.allowAdopt}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<button class="ui button primary show-modal gt-p-3" data-modal="#adopt-unadopted-modal-{{$dirI}}"><span class="icon">{{svg "octicon-plus"}}</span><span class="label">{{ctx.Locale.Tr "repo.adopt_preexisting_label"}}</span></button>
|
2023-04-24 11:08:59 +00:00
|
|
|
<div class="ui g-modal-confirm modal" id="adopt-unadopted-modal-{{$dirI}}">
|
2020-09-25 04:09:23 +00:00
|
|
|
<div class="header">
|
2023-09-25 08:56:50 +00:00
|
|
|
<span class="label">{{ctx.Locale.Tr "repo.adopt_preexisting"}}</span>
|
2020-09-25 04:09:23 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "repo.adopt_preexisting_content" $dir}}</p>
|
2020-09-25 04:09:23 +00:00
|
|
|
</div>
|
2023-06-14 18:17:58 +00:00
|
|
|
<form class="ui form" method="post" action="{{AppSubUrl}}/user/settings/repos/unadopted">
|
2020-09-25 04:09:23 +00:00
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="id" value="{{$dir}}">
|
|
|
|
<input type="hidden" name="action" value="adopt">
|
2023-04-26 15:59:08 +00:00
|
|
|
{{template "base/modal_actions_confirm" $}}
|
2020-09-25 04:09:23 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if $.allowDelete}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<button class="ui button red show-modal gt-p-3" data-modal="#delete-unadopted-modal-{{$dirI}}"><span class="icon">{{svg "octicon-x"}}</span><span class="label">{{ctx.Locale.Tr "repo.delete_preexisting_label"}}</span></button>
|
2023-04-24 11:08:59 +00:00
|
|
|
<div class="ui g-modal-confirm modal" id="delete-unadopted-modal-{{$dirI}}">
|
2020-09-25 04:09:23 +00:00
|
|
|
<div class="header">
|
2023-09-25 08:56:50 +00:00
|
|
|
<span class="label">{{ctx.Locale.Tr "repo.delete_preexisting"}}</span>
|
2020-09-25 04:09:23 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "repo.delete_preexisting_content" $dir}}</p>
|
2020-09-25 04:09:23 +00:00
|
|
|
</div>
|
2023-06-14 18:17:58 +00:00
|
|
|
<form class="ui form" method="post" action="{{AppSubUrl}}/user/settings/repos/unadopted">
|
2020-09-25 04:09:23 +00:00
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="id" value="{{$dir}}">
|
|
|
|
<input type="hidden" name="action" value="delete">
|
2023-04-23 09:24:19 +00:00
|
|
|
{{template "base/modal_actions_confirm" $}}
|
2020-09-25 04:09:23 +00:00
|
|
|
</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">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.repos_none"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
</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}}
|
2023-02-13 17:59:59 +00:00
|
|
|
{{svg "octicon-lock" 16 "gt-mr-2 iconFloat text gold"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
{{else if .IsFork}}
|
2023-02-13 17:59:59 +00:00
|
|
|
{{svg "octicon-repo-forked" 16 "gt-mr-2 iconFloat"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
{{else if .IsMirror}}
|
2023-02-13 17:59:59 +00:00
|
|
|
{{svg "octicon-mirror" 16 "gt-mr-2 iconFloat"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
{{else if .IsTemplate}}
|
2023-02-13 17:59:59 +00:00
|
|
|
{{svg "octicon-repo-template" 16 "gt-mr-2 iconFloat"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
{{else}}
|
2023-02-13 17:59:59 +00:00
|
|
|
{{svg "octicon-repo" 16 "gt-mr-2 iconFloat"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
{{end}}
|
2021-11-16 18:18:25 +00:00
|
|
|
<a class="name" href="{{.Link}}">{{.OwnerName}}/{{.Name}}</a>
|
2021-12-03 03:33:34 +00:00
|
|
|
<span>{{FileSize .Size}}</span>
|
2020-09-25 04:09:23 +00:00
|
|
|
{{if .IsFork}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.forked_from"}}
|
2021-11-16 18:18:25 +00:00
|
|
|
<span><a href="{{.BaseRepo.Link}}">{{.BaseRepo.OwnerName}}/{{.BaseRepo.Name}}</a></span>
|
2020-09-25 04:09:23 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.repos_none"}}
|
2020-09-25 04:09:23 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-02-11 17:02:41 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-04-24 11:08:59 +00:00
|
|
|
<div class="ui g-modal-confirm delete modal">
|
2023-04-23 09:24:19 +00:00
|
|
|
<div class="header">
|
2021-03-22 04:04:19 +00:00
|
|
|
{{svg "octicon-trash"}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.remove_account_link"}}
|
2020-02-11 17:02:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "settings.remove_account_link_desc"}}</p>
|
2020-02-11 17:02:41 +00:00
|
|
|
</div>
|
2023-04-23 09:24:19 +00:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2020-02-11 17:02:41 +00:00
|
|
|
</div>
|
2023-04-23 10:21:21 +00:00
|
|
|
|
|
|
|
{{template "user/settings/layout_footer" .}}
|