2023-04-23 12:21:21 +02:00
|
|
|
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings")}}
|
|
|
|
<div class="repo-setting-content">
|
2021-10-28 12:55:48 +02:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.settings.deploy_keys"}}
|
2021-10-28 12:55:48 +02:00
|
|
|
<div class="ui right">
|
|
|
|
{{if not .DisableSSH}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="ui primary tiny show-panel toggle button" data-panel="#add-deploy-key-panel">{{ctx.Locale.Tr "repo.settings.add_deploy_key"}}</button>
|
2021-10-28 12:55:48 +02:00
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="ui primary tiny button disabled">{{ctx.Locale.Tr "settings.ssh_disabled"}}</button>
|
2021-10-28 12:55:48 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2023-09-07 03:13:11 +02:00
|
|
|
<div class="{{if not .HasError}}gt-hidden{{end}} gt-mb-4" id="add-deploy-key-panel">
|
2021-10-08 18:15:09 +02:00
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.settings.deploy_key_desc"}}
|
2021-10-08 18:15:09 +02:00
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
2024-02-16 14:59:48 +01:00
|
|
|
<label for="ssh-key-title">{{ctx.Locale.Tr "repo.settings.title"}}</label>
|
2021-10-08 18:15:09 +02:00
|
|
|
<input id="ssh-key-title" name="title" value="{{.title}}" autofocus required>
|
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_Content}}error{{end}}">
|
2024-02-16 14:59:48 +01:00
|
|
|
<label for="ssh-key-content">{{ctx.Locale.Tr "repo.settings.deploy_key_content"}}</label>
|
2023-09-25 10:56:50 +02:00
|
|
|
<textarea id="ssh-key-content" name="content" placeholder="{{ctx.Locale.Tr "settings.key_content_ssh_placeholder"}}" required>{{.content}}</textarea>
|
2021-10-08 18:15:09 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<div class="ui checkbox {{if .Err_IsWritable}}error{{end}}">
|
2023-02-13 04:16:59 +01:00
|
|
|
<input id="ssh-key-is-writable" name="is_writable" type="checkbox" value="1">
|
2021-10-08 18:15:09 +02:00
|
|
|
<label for="is_writable">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.settings.is_writable"}}
|
2021-10-08 18:15:09 +02:00
|
|
|
</label>
|
2024-03-23 21:11:15 +01:00
|
|
|
<small class="tw-pl-[26px]">{{ctx.Locale.Tr "repo.settings.is_writable_info"}}</small>
|
2021-10-08 18:15:09 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-09-19 00:05:31 +02:00
|
|
|
<button class="ui primary button">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.settings.add_deploy_key"}}
|
2021-10-08 18:15:09 +02:00
|
|
|
</button>
|
2021-10-28 12:55:48 +02:00
|
|
|
<button class="ui hide-panel button" data-panel="#add-deploy-key-panel">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "cancel"}}
|
2021-10-28 12:55:48 +02:00
|
|
|
</button>
|
2021-10-08 18:15:09 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2017-03-15 23:39:38 +01:00
|
|
|
{{if .Deploykeys}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-list">
|
2017-03-15 23:39:38 +01:00
|
|
|
{{range .Deploykeys}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item">
|
|
|
|
<div class="flex-item-leading">
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="text {{if .HasRecentActivity}}green{{end}}" {{if .HasRecentActivity}}data-tooltip-content="{{ctx.Locale.Tr "settings.key_state_desc"}}"{{end}}>{{svg "octicon-key" 32}}</span>
|
2020-05-14 19:59:18 +02:00
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">{{.Name}}</div>
|
|
|
|
<div class="flex-item-body">
|
2020-05-14 19:59:18 +02:00
|
|
|
{{.Fingerprint}}
|
2015-08-18 18:34:11 +02:00
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-body">
|
2024-02-22 18:02:33 +01:00
|
|
|
<i>{{ctx.Locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix)}} — {{svg "octicon-info"}} {{if .HasUsed}}{{ctx.Locale.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="text green"{{end}}>{{DateTime "short" .UpdatedUnix}}</span>{{else}}{{ctx.Locale.Tr "settings.no_activity"}}{{end}} - <span>{{ctx.Locale.Tr "settings.can_read_info"}}{{if not .IsReadOnly}} / {{ctx.Locale.Tr "settings.can_write_info"}} {{end}}</span></i>
|
2020-05-14 19:59:18 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-trailing">
|
|
|
|
<button class="ui red tiny button delete-button" data-url="{{$.Link}}/delete" data-id="{{.ID}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.delete_key"}}
|
2023-08-01 00:13:42 +02:00
|
|
|
</button>
|
|
|
|
</div>
|
2015-08-06 16:48:11 +02:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-03-15 23:39:38 +01:00
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.settings.no_deploy_keys"}}
|
2017-03-15 23:39:38 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2015-08-06 16:48:11 +02:00
|
|
|
</div>
|
|
|
|
|
2023-04-24 13:08:59 +02:00
|
|
|
<div class="ui g-modal-confirm delete modal">
|
2023-04-23 11:24:19 +02:00
|
|
|
<div class="header">
|
2021-03-22 05:04:19 +01:00
|
|
|
{{svg "octicon-trash"}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.settings.deploy_key_deletion"}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 10:56:50 +02:00
|
|
|
<p>{{ctx.Locale.Tr "repo.settings.deploy_key_deletion_desc"}}</p>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2023-04-23 11:24:19 +02:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2015-08-06 16:48:11 +02:00
|
|
|
</div>
|
2023-04-23 12:21:21 +02:00
|
|
|
|
|
|
|
{{template "repo/settings/layout_footer" .}}
|