Update placeholder values, documentation URLs, icon names, and registry identifiers across 14 template files to reflect the molodetz rebranding. Changes include LDAP group filter placeholders, help link URLs, SVG icon prefixes, organization names in devtest, install page domain examples, and package registry documentation links for Alpine, Cargo, Chef, Composer, Conan, and Conda.
33 lines
1.1 KiB
Cheetah
33 lines
1.1 KiB
Cheetah
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository new migrate">
|
|
<div class="ui middle very relaxed page grid">
|
|
<div class="column">
|
|
{{template "repo/migrate/helper" .}}
|
|
<div class="ui cards migrate-entries">
|
|
{{range .Services}}
|
|
<a class="ui card migrate-entry tw-flex tw-items-center" href="{{AppSubUrl}}/repo/migrate?service_type={{.}}&org={{$.Org}}&mirror={{$.Mirror}}">
|
|
{{if eq .Name "github"}}
|
|
{{svg "octicon-mark-github" 184 "tw-p-4"}}
|
|
{{else if eq .Name "gitlab"}}
|
|
{{svg "molodetz-gitlab" 184 "tw-p-4"}}
|
|
{{else if eq .Name "gitbucket"}}
|
|
{{svg "molodetz-gitbucket" 184 "tw-p-4"}}
|
|
{{else}}
|
|
{{svg (printf "molodetz-%s" .Name) 184}}
|
|
{{end}}
|
|
<div class="content">
|
|
<div class="header tw-text-center">
|
|
{{.Title}}
|
|
</div>
|
|
<div class="description tw-text-center">
|
|
{{ctx.Locale.Tr (printf "repo.migrate.%s.description" .Name)}}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|