2023-02-01 12:53:04 +00:00
|
|
|
<h4 class="ui top attached header">
|
2023-04-28 00:08:47 +00:00
|
|
|
{{.locale.Tr "secrets.management"}}
|
2023-02-01 12:53:04 +00:00
|
|
|
<div class="ui right">
|
2023-03-14 03:34:09 +00:00
|
|
|
<button class="ui primary tiny show-panel button" data-panel="#add-secret-panel">{{.locale.Tr "secrets.creation"}}</button>
|
2023-02-01 12:53:04 +00:00
|
|
|
</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-secret-panel">
|
2023-02-01 12:53:04 +00:00
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field">
|
|
|
|
{{.locale.Tr "secrets.description"}}
|
|
|
|
</div>
|
|
|
|
<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-url="{{$.Link}}/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>
|
2023-05-06 13:11:27 +00:00
|
|
|
{{$.locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix) | Safe}}
|
2023-02-01 12:53:04 +00:00
|
|
|
</i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{.locale.Tr "secrets.none"}}
|
|
|
|
{{end}}
|
|
|
|
</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">
|
|
|
|
{{svg "octicon-trash"}}
|
2023-02-01 12:53:04 +00:00
|
|
|
{{.locale.Tr "secrets.deletion"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.locale.Tr "secrets.deletion.description"}}</p>
|
|
|
|
</div>
|
2023-04-23 09:24:19 +00:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2023-02-01 12:53:04 +00:00
|
|
|
</div>
|