2023-06-21 00:54:15 +02:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "actions.variables.management"}}
|
2023-06-21 00:54:15 +02:00
|
|
|
<div class="ui right">
|
|
|
|
<button class="ui primary tiny button show-modal"
|
|
|
|
data-modal="#edit-variable-modal"
|
|
|
|
data-modal-form.action="{{.Link}}/new"
|
2023-09-25 10:56:50 +02:00
|
|
|
data-modal-header="{{ctx.Locale.Tr "actions.variables.creation"}}"
|
2023-06-21 00:54:15 +02:00
|
|
|
data-modal-dialog-variable-name=""
|
|
|
|
data-modal-dialog-variable-data=""
|
|
|
|
>
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "actions.variables.creation"}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{if .Variables}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-list">
|
|
|
|
{{range .Variables}}
|
2024-03-22 20:51:29 +01:00
|
|
|
<div class="flex-item tw-items-center">
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-leading">
|
|
|
|
{{svg "octicon-pencil" 32}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">
|
|
|
|
{{.Name}}
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-body">
|
|
|
|
{{.Data}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-trailing">
|
|
|
|
<span class="color-text-light-2">
|
2024-02-22 18:02:33 +01:00
|
|
|
{{ctx.Locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix)}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</span>
|
|
|
|
<button class="btn interact-bg gt-p-3 show-modal"
|
2024-01-03 07:25:19 +01:00
|
|
|
data-tooltip-content="{{ctx.Locale.Tr "actions.variables.edit"}}"
|
2023-06-21 00:54:15 +02:00
|
|
|
data-modal="#edit-variable-modal"
|
2023-08-01 00:13:42 +02:00
|
|
|
data-modal-form.action="{{$.Link}}/{{.ID}}/edit"
|
2023-09-25 10:56:50 +02:00
|
|
|
data-modal-header="{{ctx.Locale.Tr "actions.variables.edit"}}"
|
2023-08-01 00:13:42 +02:00
|
|
|
data-modal-dialog-variable-name="{{.Name}}"
|
|
|
|
data-modal-dialog-variable-data="{{.Data}}"
|
2023-06-21 00:54:15 +02:00
|
|
|
>
|
|
|
|
{{svg "octicon-pencil"}}
|
|
|
|
</button>
|
|
|
|
<button class="btn interact-bg gt-p-3 link-action"
|
2023-09-25 10:56:50 +02:00
|
|
|
data-tooltip-content="{{ctx.Locale.Tr "actions.variables.deletion"}}"
|
2023-08-01 00:13:42 +02:00
|
|
|
data-url="{{$.Link}}/{{.ID}}/delete"
|
2023-09-25 10:56:50 +02:00
|
|
|
data-modal-confirm="{{ctx.Locale.Tr "actions.variables.deletion.description"}}"
|
2023-06-21 00:54:15 +02:00
|
|
|
>
|
|
|
|
{{svg "octicon-trash"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "actions.variables.none"}}
|
2023-06-21 00:54:15 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{/** Edit variable dialog */}}
|
|
|
|
<div class="ui small modal" id="edit-variable-modal">
|
|
|
|
<div class="header"></div>
|
|
|
|
<form class="ui form form-fetch-action" method="post">
|
|
|
|
<div class="content">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "actions.variables.description"}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="dialog-variable-name">{{ctx.Locale.Tr "name"}}</label>
|
2023-06-21 00:54:15 +02:00
|
|
|
<input autofocus required
|
|
|
|
name="name"
|
|
|
|
id="dialog-variable-name"
|
|
|
|
value="{{.name}}"
|
2023-09-21 11:03:13 +02:00
|
|
|
pattern="^(?!GITEA_|GITHUB_)[a-zA-Z_][a-zA-Z0-9_]*$"
|
2023-09-25 10:56:50 +02:00
|
|
|
placeholder="{{ctx.Locale.Tr "secrets.creation.name_placeholder"}}"
|
2023-06-21 00:54:15 +02:00
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="dialog-variable-data">{{ctx.Locale.Tr "value"}}</label>
|
2023-06-21 00:54:15 +02:00
|
|
|
<textarea required
|
|
|
|
name="data"
|
|
|
|
id="dialog-variable-data"
|
2023-09-25 10:56:50 +02:00
|
|
|
placeholder="{{ctx.Locale.Tr "secrets.creation.value_placeholder"}}"
|
2023-06-21 00:54:15 +02:00
|
|
|
></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>
|
|
|
|
</div>
|
|
|
|
|