2023-02-01 13:53:04 +01:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.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}}"
|
2023-09-25 10:56:50 +02:00
|
|
|
data-modal-header="{{ctx.Locale.Tr "secrets.creation"}}"
|
2023-06-21 00:54:15 +02:00
|
|
|
>
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "secrets.creation"}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</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}}
|
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-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">
|
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>
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 17:42:49 +01:00
|
|
|
<button class="ui btn interact-bg link-action tw-p-2"
|
2023-06-21 00:54:15 +02:00
|
|
|
data-url="{{$.Link}}/delete?id={{.ID}}"
|
2023-09-25 10:56:50 +02:00
|
|
|
data-modal-confirm="{{ctx.Locale.Tr "secrets.deletion.description"}}"
|
|
|
|
data-tooltip-content="{{ctx.Locale.Tr "secrets.deletion"}}"
|
2023-06-21 00:54:15 +02:00
|
|
|
>
|
|
|
|
{{svg "octicon-trash"}}
|
|
|
|
</button>
|
2023-02-01 13:53:04 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "secrets.none"}}
|
2023-02-01 13:53:04 +01:00
|
|
|
{{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">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "secrets.description"}}
|
2023-06-21 00:54:15 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="secret-name">{{ctx.Locale.Tr "name"}}</label>
|
2023-06-21 00:54:15 +02:00
|
|
|
<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-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="secret-data">{{ctx.Locale.Tr "value"}}</label>
|
2023-06-21 00:54:15 +02:00
|
|
|
<textarea required
|
|
|
|
id="secret-data"
|
|
|
|
name="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>
|
2023-02-01 13:53:04 +01:00
|
|
|
</div>
|