2015-08-06 20:18:11 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content repository settings">
|
2015-08-06 20:18:11 +05:30
|
|
|
{{template "repo/header" .}}
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "repo/settings/navbar" .}}
|
2015-08-09 21:53:20 +05:30
|
|
|
<div class="ui container">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "repo.settings.deploy_keys"}}
|
|
|
|
<div class="ui right">
|
2017-11-21 09:19:33 +05:30
|
|
|
{{if not .DisableSSH}}
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui blue tiny show-panel button" data-panel="#add-deploy-key-panel">{{.i18n.Tr "repo.settings.add_deploy_key"}}</div>
|
2017-11-21 09:19:33 +05:30
|
|
|
{{else}}
|
|
|
|
<div class="ui blue tiny button disabled">{{.i18n.Tr "settings.ssh_disabled"}}</div>
|
|
|
|
{{end}}
|
2017-03-16 04:09:38 +05:30
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{if .Deploykeys}}
|
|
|
|
<div class="ui key list">
|
|
|
|
{{range .Deploykeys}}
|
2017-03-30 06:32:37 +05:30
|
|
|
<div class="item">
|
|
|
|
<div class="right floated content">
|
2020-05-14 23:29:18 +05:30
|
|
|
<button class="ui red tiny button delete-button" data-url="{{$.Link}}/delete" data-id="{{.ID}}">
|
|
|
|
{{$.i18n.Tr "settings.delete_key"}}
|
|
|
|
</button>
|
2017-03-30 06:32:37 +05:30
|
|
|
</div>
|
2020-05-14 23:29:18 +05:30
|
|
|
<div class="left floated content">
|
2020-02-11 22:32:41 +05:30
|
|
|
<i class="{{if .HasRecentActivity}}green{{end}}" {{if .HasRecentActivity}}data-content="{{$.i18n.Tr "settings.key_state_desc"}}" data-variation="inverted"{{end}}>{{svg "octicon-key" 32}}</i>
|
2020-05-14 23:29:18 +05:30
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<strong>{{.Name}}</strong>
|
|
|
|
<div class="print meta">
|
|
|
|
{{.Fingerprint}}
|
2015-08-18 22:04:11 +05:30
|
|
|
</div>
|
2020-05-14 23:29:18 +05:30
|
|
|
<div class="activity meta">
|
2020-09-12 01:49:00 +05:30
|
|
|
<i>{{$.i18n.Tr "settings.add_on"}} <span>{{.CreatedUnix.FormatShort}}</span> — {{svg "octicon-info"}} {{if .HasUsed}}{{$.i18n.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="green"{{end}}>{{.UpdatedUnix.FormatShort}}</span>{{else}}{{$.i18n.Tr "settings.no_activity"}}{{end}} - <span>{{$.i18n.Tr "settings.can_read_info"}}{{if not .IsReadOnly}} / {{$.i18n.Tr "settings.can_write_info"}} {{end}}</span></i>
|
2020-05-14 23:29:18 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-06 20:18:11 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
{{else}}
|
|
|
|
{{.i18n.Tr "repo.settings.no_deploy_keys"}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div {{if not .HasError}}class="hide"{{end}} id="add-deploy-key-panel">
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "repo.settings.add_deploy_key"}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field">
|
|
|
|
{{.i18n.Tr "repo.settings.deploy_key_desc"}}
|
2015-08-18 22:04:11 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
|
|
|
<label for="title">{{.i18n.Tr "repo.settings.title"}}</label>
|
|
|
|
<input id="ssh-key-title" name="title" value="{{.title}}" autofocus required>
|
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_Content}}error{{end}}">
|
|
|
|
<label for="content">{{.i18n.Tr "repo.settings.deploy_key_content"}}</label>
|
|
|
|
<textarea id="ssh-key-content" name="content" required>{{.content}}</textarea>
|
|
|
|
</div>
|
2018-01-07 04:25:53 +05:30
|
|
|
<div class="field">
|
|
|
|
<div class="ui checkbox {{if .Err_IsWritable}}error{{end}}">
|
|
|
|
<input id="ssh-key-is-writable" name="is_writable" class="hidden" type="checkbox" value="1">
|
|
|
|
<label for="is_writable">
|
|
|
|
{{.i18n.Tr "repo.settings.is_writable"}}
|
|
|
|
</label>
|
|
|
|
<small style="padding-left: 26px;">{{$.i18n.Tr "repo.settings.is_writable_info" | Str2html}}</small>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
<button class="ui green button">
|
|
|
|
{{.i18n.Tr "repo.settings.add_deploy_key"}}
|
|
|
|
</button>
|
|
|
|
</form>
|
2015-08-06 20:18:11 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-08-09 21:53:20 +05:30
|
|
|
<div class="ui small basic delete modal">
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui icon header">
|
2021-03-22 09:34:19 +05:30
|
|
|
{{svg "octicon-trash"}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{.i18n.Tr "repo.settings.deploy_key_deletion"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.i18n.Tr "repo.settings.deploy_key_deletion_desc"}}</p>
|
|
|
|
</div>
|
|
|
|
<div class="actions">
|
|
|
|
<div class="ui red basic inverted cancel button">
|
|
|
|
<i class="remove icon"></i>
|
|
|
|
{{.i18n.Tr "modal.no"}}
|
|
|
|
</div>
|
|
|
|
<div class="ui green basic inverted ok button">
|
|
|
|
<i class="checkmark icon"></i>
|
|
|
|
{{.i18n.Tr "modal.yes"}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-06 20:18:11 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|