2023-04-27 21:48:41 -04:00
|
|
|
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin")}}
|
2023-04-23 06:21:21 -04:00
|
|
|
<div class="admin-setting-content">
|
2020-09-25 00:09:23 -04:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "admin.repos.unadopted"}}
|
2021-04-10 23:46:37 -04:00
|
|
|
<div class="ui right">
|
2022-06-27 16:58:46 -04:00
|
|
|
<a class="ui primary tiny button" href="{{AppSubUrl}}/admin/repos">{{.locale.Tr "admin.repos.repo_manage_panel"}}</a>
|
2021-04-10 23:46:37 -04:00
|
|
|
</div>
|
2020-09-25 00:09:23 -04:00
|
|
|
</h4>
|
2021-04-10 23:46:37 -04:00
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ui form ignore-dirty">
|
|
|
|
<div class="ui fluid action input">
|
|
|
|
<input name="search" value="true" type="hidden">
|
2022-06-27 16:58:46 -04:00
|
|
|
<input name="q" value="{{.Keyword}}" placeholder="{{.locale.Tr "repo.adopt_search"}}" autofocus>
|
|
|
|
<button class="ui primary button">{{.locale.Tr "explore.search"}}</button>
|
2021-04-10 23:46:37 -04:00
|
|
|
</div>
|
|
|
|
</form>
|
2020-09-25 00:09:23 -04:00
|
|
|
</div>
|
2021-04-10 23:46:37 -04:00
|
|
|
{{if .search}}
|
|
|
|
<div class="ui attached segment settings">
|
|
|
|
{{if .Dirs}}
|
2023-04-27 21:48:41 -04:00
|
|
|
<div class="ui aligned divided list">
|
2021-04-10 23:46:37 -04:00
|
|
|
{{range $dirI, $dir := .Dirs}}
|
2023-04-27 21:48:41 -04:00
|
|
|
<div class="item gt-df gt-ac">
|
|
|
|
<span class="gt-f1"> {{svg "octicon-file-directory-fill"}} {{$dir}}</span>
|
|
|
|
<div>
|
|
|
|
<button class="ui button green show-modal gt-p-3" data-modal="#adopt-unadopted-modal-{{$dirI}}">{{svg "octicon-plus"}} {{$.locale.Tr "repo.adopt_preexisting_label"}}</button>
|
|
|
|
<div class="ui g-modal-confirm modal" id="adopt-unadopted-modal-{{$dirI}}">
|
|
|
|
<div class="header">
|
|
|
|
<span class="label">{{$.locale.Tr "repo.adopt_preexisting"}}</span>
|
2021-04-10 23:46:37 -04:00
|
|
|
</div>
|
2023-04-27 21:48:41 -04:00
|
|
|
<div class="content">
|
|
|
|
<p>{{$.locale.Tr "repo.adopt_preexisting_content" $dir}}</p>
|
2021-04-10 23:46:37 -04:00
|
|
|
</div>
|
2023-04-27 21:48:41 -04:00
|
|
|
<form class="ui form" method="POST" action="{{AppSubUrl}}/admin/repos/unadopted">
|
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="id" value="{{$dir}}">
|
|
|
|
<input type="hidden" name="action" value="adopt">
|
|
|
|
<input type="hidden" name="q" value="{{$.Keyword}}">
|
|
|
|
<input type="hidden" name="page" value="{{$.CurrentPage}}">
|
|
|
|
{{template "base/modal_actions_confirm" (dict "locale" $.locale)}}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<button class="ui button red show-modal gt-p-3" data-modal="#delete-unadopted-modal-{{$dirI}}">{{svg "octicon-x"}} {{$.locale.Tr "repo.delete_preexisting_label"}}</button>
|
|
|
|
<div class="ui g-modal-confirm modal" id="delete-unadopted-modal-{{$dirI}}">
|
|
|
|
<div class="header">
|
|
|
|
<span class="label">{{$.locale.Tr "repo.delete_preexisting"}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{$.locale.Tr "repo.delete_preexisting_content" $dir}}</p>
|
|
|
|
</div>
|
|
|
|
<form class="ui form" method="POST" action="{{AppSubUrl}}/admin/repos/unadopted">
|
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="id" value="{{$dir}}">
|
|
|
|
<input type="hidden" name="action" value="delete">
|
|
|
|
<input type="hidden" name="q" value="{{$.Keyword}}">
|
|
|
|
<input type="hidden" name="page" value="{{$.CurrentPage}}">
|
|
|
|
{{template "base/modal_actions_confirm" (dict "locale" $.locale "ModalButtonColors" "yellow")}}
|
|
|
|
</form>
|
2021-04-10 23:46:37 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "admin.repos.unadopted.no_more"}}
|
2021-04-10 23:46:37 -04:00
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2020-09-25 00:09:23 -04:00
|
|
|
|
2023-04-23 06:21:21 -04:00
|
|
|
{{template "admin/layout_footer" .}}
|