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