summaryrefslogtreecommitdiffstats
path: root/templates/admin/repo/unadopted.tmpl
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2023-04-28 09:48:41 +0800
committerGitHub <noreply@github.com>2023-04-28 09:48:41 +0800
commit83022013c83feb5488952baea3ef0be818dfce21 (patch)
tree786e24b0ef85eb989d15f8fda3607bb9a2a668b6 /templates/admin/repo/unadopted.tmpl
parent63a401ac40ce2cc19c7d0341d11d434b568653fc (diff)
downloadgitea-83022013c83feb5488952baea3ef0be818dfce21.tar.gz
gitea-83022013c83feb5488952baea3ef0be818dfce21.zip
Fix layouts of admin table / adapt repo / email test (#24370)
Ref: https://github.com/go-gitea/gitea/pull/24315#pullrequestreview-1403034993 And fix the incorrect layout for "dasbboard", the "form" shouldn't follow `<h4 class="ui top attached header">`, so move it to inner. Diff with ignoring spaces: https://github.com/go-gitea/gitea/pull/24370/files?diff=unified&w=1 A known bug: the adapt/delete button doesn't work due to a historical messy logic, will fix it in next PR (#24374) ![image](https://user-images.githubusercontent.com/2114189/234754656-d160b098-b8d4-4783-962a-27d5c764863c.png) ![image](https://user-images.githubusercontent.com/2114189/234762327-3e77e2e4-a156-4498-8a8b-092e14cf9204.png) ![image](https://user-images.githubusercontent.com/2114189/234767811-74b7272c-e40c-4850-8e3c-499e3b53b827.png) ![image](https://user-images.githubusercontent.com/2114189/234761247-e6aad889-dcad-443c-948f-2d44df68725b.png)
Diffstat (limited to 'templates/admin/repo/unadopted.tmpl')
-rw-r--r--templates/admin/repo/unadopted.tmpl75
1 files changed, 36 insertions, 39 deletions
diff --git a/templates/admin/repo/unadopted.tmpl b/templates/admin/repo/unadopted.tmpl
index 3e47447178..27898a1854 100644
--- a/templates/admin/repo/unadopted.tmpl
+++ b/templates/admin/repo/unadopted.tmpl
@@ -1,4 +1,4 @@
-{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin user")}}
+{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin")}}
<div class="admin-setting-content">
<h4 class="ui top attached header">
{{.locale.Tr "admin.repos.unadopted"}}
@@ -18,47 +18,44 @@
{{if .search}}
<div class="ui attached segment settings">
{{if .Dirs}}
- <div class="ui middle aligned divided list">
+ <div class="ui aligned divided list">
{{range $dirI, $dir := .Dirs}}
- <div class="item">
- <div class="content">
- <span class="icon">{{svg "octicon-file-directory-fill"}}</span>
- <span class="name">{{$dir}}</span>
- <div class="right floated content">
- <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">{{$.locale.Tr "repo.adopt_preexisting_label"}}</span></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>
- </div>
- <div class="content">
- <p>{{$.locale.Tr "repo.adopt_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="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 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>
</div>
- <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">{{$.locale.Tr "repo.delete_preexisting_label"}}</span></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>
+ <div class="content">
+ <p>{{$.locale.Tr "repo.adopt_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="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>
</div>
</div>
</div>