2019-04-17 13:48:16 +05:30
|
|
|
<h4 class="ui top attached header">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "settings.authorized_oauth2_applications"}}
|
2019-04-17 13:48:16 +05:30
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<div class="ui key list">
|
|
|
|
<div class="item">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "settings.authorized_oauth2_applications_description"}}
|
2019-04-17 13:48:16 +05:30
|
|
|
</div>
|
|
|
|
{{range $grant := .Grants}}
|
|
|
|
<div class="item">
|
|
|
|
<div class="right floated content">
|
2021-08-27 08:27:40 +05:30
|
|
|
<button class="ui red tiny button delete-button" data-modal-id="revoke-gitea-oauth2-grant"
|
2022-10-09 17:37:41 +05:30
|
|
|
data-url="{{AppSubUrl}}/user/settings/applications/oauth2/{{$grant.ApplicationID}}/revoke/{{$grant.ID}}">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "settings.revoke_key"}}
|
2019-04-17 13:48:16 +05:30
|
|
|
</button>
|
|
|
|
</div>
|
2021-01-04 17:48:12 +05:30
|
|
|
<div class="left floated content">
|
|
|
|
{{svg "octicon-key"}}
|
|
|
|
</div>
|
2019-04-17 13:48:16 +05:30
|
|
|
<div class="content">
|
|
|
|
<strong>{{$grant.Application.Name}}</strong>
|
|
|
|
<div class="activity meta">
|
2023-05-06 18:41:27 +05:30
|
|
|
<i>{{$.locale.Tr "settings.added_on" (DateTime "short" $grant.CreatedUnix) | Safe}}</i>
|
2019-04-17 13:48:16 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
2023-07-04 02:08:06 +05:30
|
|
|
<div class="ui g-modal-confirm delete modal" id="revoke-gitea-oauth2-grant">
|
|
|
|
<div class="header">
|
|
|
|
{{svg "octicon-shield" 16 "gt-mr-2"}}
|
|
|
|
{{.locale.Tr "settings.revoke_oauth2_grant"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.locale.Tr "settings.revoke_oauth2_grant_description"}}</p>
|
|
|
|
</div>
|
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2019-04-17 13:48:16 +05:30
|
|
|
</div>
|
|
|
|
</div>
|