mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
a31fedd2c2
These can be used to explain which types of repositories a Gitea instance is willing to host, or other rules for creating repositories.
25 lines
727 B
Handlebars
25 lines
727 B
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content repository new migrate">
|
|
<div class="ui middle very relaxed page grid">
|
|
<div class="column">
|
|
{{template "repo/migrate/helper" .}}
|
|
<div class="ui three stackable cards">
|
|
{{range .Services}}
|
|
<a class="ui card df ac" href="{{AppSubUrl}}/repo/migrate?service_type={{.}}&org={{$.Org}}&mirror={{$.Mirror}}">
|
|
{{svg (Printf "gitea-%s" .Name) 184}}
|
|
<div class="content">
|
|
<div class="header tc">
|
|
{{.Title}}
|
|
</div>
|
|
<div class="description tc">
|
|
{{(Printf "repo.migrate.%s.description" .Name) | $.locale.Tr}}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|