2023-04-28 04:48:41 +03:00
{{ template "admin/layout_head" ( dict "ctxData" . "pageClass" "admin" ) }}
2023-04-23 13:21:21 +03:00
<div class="admin-setting-content">
2020-09-25 07:09:23 +03:00
<h4 class="ui top attached header">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "admin.repos.unadopted" }}
2021-04-11 06:46:37 +03:00
<div class="ui right">
2024-10-10 07:56:49 +03:00
<a class="ui primary tiny button" href=" {{ AppSubUrl }} /-/admin/repos"> {{ ctx .Locale .Tr "admin.repos.repo_manage_panel" }} </a>
2021-04-11 06:46:37 +03:00
</div>
2020-09-25 07:09:23 +03:00
</h4>
2021-04-11 06:46:37 +03:00
<div class="ui attached segment">
<form class="ui form ignore-dirty">
2024-03-15 02:24:59 +03:00
<div class="ui small fluid action input">
<input name="search" value="true" type="hidden">
<input name="q" value=" {{ .Keyword }} " placeholder=" {{ ctx .Locale .Tr "repo.adopt_search" }} " autofocus>
{{ template "shared/search/button" }}
2021-04-11 06:46:37 +03:00
</div>
</form>
2020-09-25 07:09:23 +03:00
</div>
2021-04-11 06:46:37 +03:00
{{ if .search }}
<div class="ui attached segment settings">
{{ if .Dirs }}
2023-04-28 04:48:41 +03:00
<div class="ui aligned divided list">
2021-04-11 06:46:37 +03:00
{{ range $ dirI , $ dir : = .Dirs }}
2024-03-22 22:51:29 +03:00
<div class="item tw-flex tw-items-center">
2024-03-22 16:45:10 +03:00
<span class="tw-flex-1"> {{ svg "octicon-file-directory-fill" }} {{ $ dir }} </span>
2023-04-28 04:48:41 +03:00
<div>
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 19:42:49 +03:00
<button class="ui button primary show-modal tw-p-2" data-modal="#adopt-unadopted-modal- {{ $ dirI }} "> {{ svg "octicon-plus" }} {{ ctx .Locale .Tr "repo.adopt_preexisting_label" }} </button>
2023-04-28 04:48:41 +03:00
<div class="ui g-modal-confirm modal" id="adopt-unadopted-modal- {{ $ dirI }} ">
<div class="header">
2023-09-25 11:56:50 +03:00
<span class="label"> {{ ctx .Locale .Tr "repo.adopt_preexisting" }} </span>
2021-04-11 06:46:37 +03:00
</div>
2023-04-28 04:48:41 +03:00
<div class="content">
2023-09-25 11:56:50 +03:00
<p> {{ ctx .Locale .Tr "repo.adopt_preexisting_content" $ dir }} </p>
2021-04-11 06:46:37 +03:00
</div>
2024-10-10 07:56:49 +03:00
<form class="ui form" method="post" action=" {{ AppSubUrl }} /-/admin/repos/unadopted">
2023-04-28 04:48:41 +03:00
{{ $ .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 }} ">
2023-09-24 23:31:58 +03:00
{{ template "base/modal_actions_confirm" }}
2023-04-28 04:48:41 +03:00
</form>
</div>
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 19:42:49 +03:00
<button class="ui button red show-modal tw-p-2" data-modal="#delete-unadopted-modal- {{ $ dirI }} "> {{ svg "octicon-x" }} {{ ctx .Locale .Tr "repo.delete_preexisting_label" }} </button>
2023-04-28 04:48:41 +03:00
<div class="ui g-modal-confirm modal" id="delete-unadopted-modal- {{ $ dirI }} ">
<div class="header">
2023-09-25 11:56:50 +03:00
<span class="label"> {{ ctx .Locale .Tr "repo.delete_preexisting" }} </span>
2023-04-28 04:48:41 +03:00
</div>
<div class="content">
2023-09-25 11:56:50 +03:00
<p> {{ ctx .Locale .Tr "repo.delete_preexisting_content" $ dir }} </p>
2023-04-28 04:48:41 +03:00
</div>
2024-10-10 07:56:49 +03:00
<form class="ui form" method="post" action=" {{ AppSubUrl }} /-/admin/repos/unadopted">
2023-04-28 04:48:41 +03:00
{{ $ .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 }} ">
2024-04-14 20:53:52 +03:00
{{ template "base/modal_actions_confirm" }}
2023-04-28 04:48:41 +03:00
</form>
2021-04-11 06:46:37 +03:00
</div>
</div>
</div>
{{ end }}
</div>
{{ template "base/paginate" . }}
{{ else }}
<div class="item">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "admin.repos.unadopted.no_more" }}
2021-04-11 06:46:37 +03:00
</div>
{{ template "base/paginate" . }}
{{ end }}
</div>
{{ end }}
</div>
2020-09-25 07:09:23 +03:00
2023-04-23 13:21:21 +03:00
{{ template "admin/layout_footer" . }}