|
|
|
|
@@ -1,69 +1,80 @@
|
|
|
|
|
<div class="ui container">
|
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
|
{{.locale.Tr "repo.settings.secrets"}}
|
|
|
|
|
<div class="ui right">
|
|
|
|
|
<div class="ui primary tiny show-panel button" data-panel="#add-secret-panel">{{.locale.Tr "repo.settings.add_secret"}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</h4>
|
|
|
|
|
<div class="ui attached segment">
|
|
|
|
|
<div class="{{if not .HasError}}hide{{end}} mb-4" id="add-secret-panel">
|
|
|
|
|
<form class="ui form" action="{{.Link}}?act=secret" method="post">
|
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
|
<div class="field">
|
|
|
|
|
{{.locale.Tr "repo.settings.secret_desc"}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
|
|
|
|
<label for="title">{{.locale.Tr "repo.settings.secret_key"}}</label>
|
|
|
|
|
<input id="ssh-key-title" name="title" value="{{.title}}" autofocus required>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="field {{if .Err_Content}}error{{end}}">
|
|
|
|
|
<label for="content">{{.locale.Tr "repo.settings.secret_content"}}</label>
|
|
|
|
|
<textarea id="ssh-key-content" name="content" placeholder="{{.locale.Tr "repo.settings.secret_value_content_placeholder"}}" required>{{.content}}</textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="field">
|
|
|
|
|
<div class="ui checkbox {{if .Err_IsWritable}}error{{end}}">
|
|
|
|
|
<input id="pull_request_read" name="pull_request_read" class="hidden" type="checkbox" value="1">
|
|
|
|
|
<label for="is_writable">
|
|
|
|
|
{{.locale.Tr "repo.settings.pull_request_read"}}
|
|
|
|
|
</label>
|
|
|
|
|
<small style="padding-left: 26px;">{{$.locale.Tr "repo.settings.pull_request_read_info" | Str2html}}</small>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<button class="ui green button">
|
|
|
|
|
{{.locale.Tr "repo.settings.add_secret"}}
|
|
|
|
|
</button>
|
|
|
|
|
<button class="ui hide-panel button" data-panel="#add-secret-panel">
|
|
|
|
|
{{.locale.Tr "cancel"}}
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
{{if .Secrets}}
|
|
|
|
|
<div class="ui key list">
|
|
|
|
|
{{range .Secrets}}
|
|
|
|
|
<div class="item">
|
|
|
|
|
<div class="right floated content">
|
|
|
|
|
<button class="ui red tiny button delete-button" data-url="{{$.Link}}/delete?act=secret" data-id="{{.ID}}">
|
|
|
|
|
{{$.locale.Tr "settings.delete_key"}}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="left floated content">
|
|
|
|
|
<i class="tooltip">{{svg "octicon-key" 32}}</i>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<strong>{{.Name}}</strong>
|
|
|
|
|
<div class="print meta">
|
|
|
|
|
{{Shadow .Data}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="activity meta">
|
|
|
|
|
<i>{{$.locale.Tr "settings.add_on"}} <span>{{.CreatedUnix.FormatShort}}</span>
|
|
|
|
|
{{if .PullRequest}} — {{svg "octicon-info"}} - <span> {{$.locale.Tr "repo.settings.pull_request_read_hint"}} </span>{{end}}</i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{end}}
|
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
|
{{.locale.Tr "secrets.secrets"}}
|
|
|
|
|
<div class="ui right">
|
|
|
|
|
<div class="ui primary tiny show-panel button" data-panel="#add-secret-panel">{{.locale.Tr "secrets.creation"}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</h4>
|
|
|
|
|
<div class="ui attached segment">
|
|
|
|
|
<div class="{{if not .HasError}}hide {{end}}mb-4" id="add-secret-panel">
|
|
|
|
|
<form class="ui form" action="{{.Link}}/secrets" method="post">
|
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
|
<div class="field">
|
|
|
|
|
{{.locale.Tr "secrets.description"}}
|
|
|
|
|
</div>
|
|
|
|
|
{{else}}
|
|
|
|
|
{{.locale.Tr "repo.settings.no_secret"}}
|
|
|
|
|
{{end}}
|
|
|
|
|
<div class="field{{if .Err_Title}} error{{end}}">
|
|
|
|
|
<label for="secret-title">{{.locale.Tr "secrets.name"}}</label>
|
|
|
|
|
<input id="secret-title" name="title" value="{{.title}}" autofocus required pattern="^[a-zA-Z_][a-zA-Z0-9_]*$" placeholder="{{.locale.Tr "secrets.creation.name_placeholder"}}">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="field{{if .Err_Content}} error{{end}}">
|
|
|
|
|
<label for="secret-content">{{.locale.Tr "secrets.value"}}</label>
|
|
|
|
|
<textarea id="secret-content" name="content" required placeholder="{{.locale.Tr "secrets.creation.value_placeholder"}}">{{.content}}</textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<button class="ui green button">
|
|
|
|
|
{{.locale.Tr "secrets.creation"}}
|
|
|
|
|
</button>
|
|
|
|
|
<button class="ui hide-panel button" data-panel="#add-secret-panel">
|
|
|
|
|
{{.locale.Tr "cancel"}}
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
{{if .Secrets}}
|
|
|
|
|
<div class="ui key list">
|
|
|
|
|
{{range .Secrets}}
|
|
|
|
|
<div class="item">
|
|
|
|
|
<div class="right floated content">
|
|
|
|
|
<button class="ui red tiny button delete-button" data-modal-id="delete-secret-modal" data-url="{{$.Link}}/secrets/delete" data-id="{{.ID}}">
|
|
|
|
|
{{$.locale.Tr "settings.delete_key"}}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="left floated content">
|
|
|
|
|
<i>{{svg "octicon-key" 32}}</i>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<strong>{{.Name}}</strong>
|
|
|
|
|
<div class="print meta">******</div>
|
|
|
|
|
<div class="activity meta">
|
|
|
|
|
<i>
|
|
|
|
|
{{$.locale.Tr "settings.add_on"}}
|
|
|
|
|
<span>{{.CreatedUnix.FormatShort}}</span>
|
|
|
|
|
</i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{end}}
|
|
|
|
|
</div>
|
|
|
|
|
{{else}}
|
|
|
|
|
{{.locale.Tr "secrets.none"}}
|
|
|
|
|
{{end}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="ui small basic delete modal" id="delete-secret-modal">
|
|
|
|
|
<div class="ui icon header">
|
|
|
|
|
{{svg "octicon-trash"}}
|
|
|
|
|
{{.locale.Tr "secrets.deletion"}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<p>{{.locale.Tr "secrets.deletion.description"}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="actions">
|
|
|
|
|
<div class="ui red basic inverted cancel button">
|
|
|
|
|
<i class="remove icon"></i>
|
|
|
|
|
{{.locale.Tr "modal.no"}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ui green basic inverted ok button">
|
|
|
|
|
<i class="checkmark icon"></i>
|
|
|
|
|
{{.locale.Tr "modal.yes"}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|