2023-02-01 13:53:04 +01:00
|
|
|
<h4 class="ui top attached header">
|
2023-04-28 02:08:47 +02:00
|
|
|
{{.locale.Tr "secrets.management"}}
|
2023-02-01 13:53:04 +01:00
|
|
|
<div class="ui right">
|
2023-06-21 00:54:15 +02:00
|
|
|
<button class="ui primary tiny button show-modal"
|
|
|
|
data-modal="#add-secret-modal"
|
|
|
|
data-modal-form.action="{{.Link}}"
|
|
|
|
data-modal-header="{{.locale.Tr "secrets.creation"}}"
|
|
|
|
>
|
|
|
|
{{.locale.Tr "secrets.creation"}}
|
|
|
|
</button>
|
2023-02-01 13:53:04 +01:00
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{if .Secrets}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-list">
|
|
|
|
{{range .Secrets}}
|
2023-09-08 15:57:18 +02:00
|
|
|
<div class="flex-item gt-ac">
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-leading">
|
|
|
|
{{svg "octicon-key" 32}}
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">
|
|
|
|
{{.Name}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-body">
|
|
|
|
******
|
2023-06-21 00:54:15 +02:00
|
|
|
</div>
|
2023-02-01 13:53:04 +01:00
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-trailing">
|
|
|
|
<span class="color-text-light-2">
|
|
|
|
{{$.locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix) | Safe}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</span>
|
|
|
|
<button class="ui btn interact-bg link-action gt-p-3"
|
|
|
|
data-url="{{$.Link}}/delete?id={{.ID}}"
|
|
|
|
data-modal-confirm="{{$.locale.Tr "secrets.deletion.description"}}"
|
|
|
|
data-tooltip-content="{{$.locale.Tr "secrets.deletion"}}"
|
|
|
|
>
|
|
|
|
{{svg "octicon-trash"}}
|
|
|
|
</button>
|
2023-02-01 13:53:04 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{.locale.Tr "secrets.none"}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-06-21 00:54:15 +02:00
|
|
|
|
|
|
|
{{/* Add secret dialog */}}
|
|
|
|
<div class="ui small modal" id="add-secret-modal">
|
2023-04-23 11:24:19 +02:00
|
|
|
<div class="header">
|
2023-06-21 00:54:15 +02:00
|
|
|
<span id="actions-modal-header"></span>
|
2023-02-01 13:53:04 +01:00
|
|
|
</div>
|
2023-06-21 00:54:15 +02:00
|
|
|
<form class="ui form form-fetch-action" method="post">
|
|
|
|
<div class="content">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field">
|
|
|
|
{{.locale.Tr "secrets.description"}}
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<label for="secret-name">{{.locale.Tr "name"}}</label>
|
|
|
|
<input autofocus required
|
|
|
|
id="secret-name"
|
|
|
|
name="name"
|
|
|
|
value="{{.name}}"
|
2023-09-05 22:15:19 +02:00
|
|
|
pattern="^(?!GITEA_|GITHUB_)[a-zA-Z_][a-zA-Z0-9_]*$"
|
2023-06-21 00:54:15 +02:00
|
|
|
placeholder="{{.locale.Tr "secrets.creation.name_placeholder"}}"
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<label for="secret-data">{{.locale.Tr "value"}}</label>
|
|
|
|
<textarea required
|
|
|
|
id="secret-data"
|
|
|
|
name="data"
|
|
|
|
placeholder="{{.locale.Tr "secrets.creation.value_placeholder"}}"
|
|
|
|
></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-09-24 22:31:58 +02:00
|
|
|
{{template "base/modal_actions_confirm" (dict "ModalButtonTypes" "confirm")}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</form>
|
2023-02-01 13:53:04 +01:00
|
|
|
</div>
|