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