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-02-22 17:02:33 +00:00
|
|
|
<i>{{ctx.Locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix)}}</i>
|
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}/**/*
```
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>
|