mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-19 11:31:05 +00:00
Sub-templates have direct access to `ctx.RootData` (the root data map), so there is no need for callers to explicitly pass it as `ctxData` via `dict`. Also fix #37569 by the way --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: wxiaoguang <2114189+wxiaoguang@users.noreply.github.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
24 lines
935 B
Handlebars
24 lines
935 B
Handlebars
{{template "user/settings/layout_head" (dict "pageClass" "user settings packages")}}
|
|
<div class="user-setting-content">
|
|
{{template "package/shared/cleanup_rules/list" .}}
|
|
{{template "package/shared/cargo" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
{{ctx.Locale.Tr "packages.owner.settings.chef.title"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<div class="ui form">
|
|
<div class="field">
|
|
<label>{{ctx.Locale.Tr "packages.owner.settings.chef.keypair.description"}}</label>
|
|
</div>
|
|
<form class="field" action="{{.Link}}/chef/regenerate_keypair" method="post">
|
|
<button class="ui primary button">{{ctx.Locale.Tr "packages.owner.settings.chef.keypair"}}</button>
|
|
</form>
|
|
<div class="field">
|
|
<label>{{ctx.Locale.Tr "packages.registry.documentation" "Chef" "https://docs.gitea.com/usage/packages/chef/"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "user/settings/layout_footer" .}}
|