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