2019-04-17 08:18:16 +00:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.authorized_oauth2_applications"}}
|
2019-04-17 08:18:16 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2023-07-31 22:13:42 +00:00
|
|
|
<div class="flex-list">
|
|
|
|
<div class="flex-item">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.authorized_oauth2_applications_description"}}
|
2019-04-17 08:18:16 +00:00
|
|
|
</div>
|
2023-07-31 22:13:42 +00:00
|
|
|
{{range .Grants}}
|
|
|
|
<div class="flex-item">
|
|
|
|
<div class="flex-item-leading">
|
|
|
|
{{svg "octicon-key" 32}}
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">{{.Application.Name}}</div>
|
|
|
|
<div class="flex-item-body">
|
2024-04-29 14:26:26 +00:00
|
|
|
<p>{{ctx.Locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix)}}</p>
|
2023-07-31 22:13:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-trailing">
|
2021-08-27 02:57:40 +00:00
|
|
|
<button class="ui red tiny button delete-button" data-modal-id="revoke-gitea-oauth2-grant"
|
2023-07-31 22:13:42 +00:00
|
|
|
data-url="{{AppSubUrl}}/user/settings/applications/oauth2/{{.ApplicationID}}/revoke/{{.ID}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.revoke_key"}}
|
2019-04-17 08:18:16 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
2023-07-03 20:38:06 +00:00
|
|
|
<div class="ui g-modal-confirm delete modal" id="revoke-gitea-oauth2-grant">
|
|
|
|
<div class="header">
|
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
|
|
|
{{svg "octicon-shield" 16 "tw-mr-1"}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.revoke_oauth2_grant"}}
|
2023-07-03 20:38:06 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "settings.revoke_oauth2_grant_description"}}</p>
|
2023-07-03 20:38:06 +00:00
|
|
|
</div>
|
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2019-04-17 08:18:16 +00:00
|
|
|
</div>
|
|
|
|
</div>
|