2023-04-28 01:48:41 +00:00
|
|
|
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin")}}
|
2023-04-23 10:21:21 +00:00
|
|
|
<div class="admin-setting-content">
|
2020-09-25 04:09:23 +00:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "admin.repos.unadopted"}}
|
2021-04-11 03:46:37 +00:00
|
|
|
<div class="ui right">
|
2023-09-25 08:56:50 +00:00
|
|
|
<a class="ui primary tiny button" href="{{AppSubUrl}}/admin/repos">{{ctx.Locale.Tr "admin.repos.repo_manage_panel"}}</a>
|
2021-04-11 03:46:37 +00:00
|
|
|
</div>
|
2020-09-25 04:09:23 +00:00
|
|
|
</h4>
|
2021-04-11 03:46:37 +00:00
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ui form ignore-dirty">
|
2024-03-14 23:24:59 +00: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 03:46:37 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2020-09-25 04:09:23 +00:00
|
|
|
</div>
|
2021-04-11 03:46:37 +00:00
|
|
|
{{if .search}}
|
|
|
|
<div class="ui attached segment settings">
|
|
|
|
{{if .Dirs}}
|
2023-04-28 01:48:41 +00:00
|
|
|
<div class="ui aligned divided list">
|
2021-04-11 03:46:37 +00:00
|
|
|
{{range $dirI, $dir := .Dirs}}
|
2024-03-22 19:51:29 +00:00
|
|
|
<div class="item tw-flex tw-items-center">
|
2024-03-22 13:45:10 +00:00
|
|
|
<span class="tw-flex-1"> {{svg "octicon-file-directory-fill"}} {{$dir}}</span>
|
2023-04-28 01:48:41 +00: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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00: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 01:48:41 +00:00
|
|
|
<div class="ui g-modal-confirm modal" id="adopt-unadopted-modal-{{$dirI}}">
|
|
|
|
<div class="header">
|
2023-09-25 08:56:50 +00:00
|
|
|
<span class="label">{{ctx.Locale.Tr "repo.adopt_preexisting"}}</span>
|
2021-04-11 03:46:37 +00:00
|
|
|
</div>
|
2023-04-28 01:48:41 +00:00
|
|
|
<div class="content">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "repo.adopt_preexisting_content" $dir}}</p>
|
2021-04-11 03:46:37 +00:00
|
|
|
</div>
|
2023-06-14 18:17:58 +00:00
|
|
|
<form class="ui form" method="post" action="{{AppSubUrl}}/admin/repos/unadopted">
|
2023-04-28 01:48:41 +00: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 20:31:58 +00:00
|
|
|
{{template "base/modal_actions_confirm"}}
|
2023-04-28 01:48:41 +00: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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00: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 01:48:41 +00:00
|
|
|
<div class="ui g-modal-confirm modal" id="delete-unadopted-modal-{{$dirI}}">
|
|
|
|
<div class="header">
|
2023-09-25 08:56:50 +00:00
|
|
|
<span class="label">{{ctx.Locale.Tr "repo.delete_preexisting"}}</span>
|
2023-04-28 01:48:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "repo.delete_preexisting_content" $dir}}</p>
|
2023-04-28 01:48:41 +00:00
|
|
|
</div>
|
2023-06-14 18:17:58 +00:00
|
|
|
<form class="ui form" method="post" action="{{AppSubUrl}}/admin/repos/unadopted">
|
2023-04-28 01:48:41 +00: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}}">
|
2023-09-24 20:31:58 +00:00
|
|
|
{{template "base/modal_actions_confirm" (dict "ModalButtonColors" "yellow")}}
|
2023-04-28 01:48:41 +00:00
|
|
|
</form>
|
2021-04-11 03:46:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "admin.repos.unadopted.no_more"}}
|
2021-04-11 03:46:37 +00:00
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2020-09-25 04:09:23 +00:00
|
|
|
|
2023-04-23 10:21:21 +00:00
|
|
|
{{template "admin/layout_footer" .}}
|