2020-09-09 12:29:10 -06:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 15:56:10 -07:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository new migrate">
|
2020-09-09 12:29:10 -06:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
2023-01-24 12:01:39 -07:00
|
|
|
{{template "repo/migrate/helper" .}}
|
2020-09-09 12:29:10 -06:00
|
|
|
<div class="ui three stackable cards">
|
|
|
|
{{range .Services}}
|
2023-02-13 10:59:59 -07:00
|
|
|
<a class="ui card gt-df gt-ac" href="{{AppSubUrl}}/repo/migrate?service_type={{.}}&org={{$.Org}}&mirror={{$.Mirror}}">
|
2020-12-05 03:09:09 -07:00
|
|
|
{{svg (Printf "gitea-%s" .Name) 184}}
|
2020-09-09 12:29:10 -06:00
|
|
|
<div class="content">
|
2023-02-13 10:59:59 -07:00
|
|
|
<div class="header gt-tc">
|
2020-12-05 03:09:09 -07:00
|
|
|
{{.Title}}
|
|
|
|
</div>
|
2023-02-13 10:59:59 -07:00
|
|
|
<div class="description gt-tc">
|
2022-08-31 09:58:54 -06:00
|
|
|
{{(Printf "repo.migrate.%s.description" .Name) | $.locale.Tr}}
|
2020-09-09 12:29:10 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-05 03:09:09 -07:00
|
|
|
</a>
|
2020-09-09 12:29:10 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|