You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

migrate.tmpl 763B

123456789101112131415161718192021222324
  1. {{template "base/head" .}}
  2. <div role="main" aria-label="{{.Title}}" class="page-content repository new migrate">
  3. <div class="ui middle very relaxed page grid">
  4. <div class="column">
  5. {{template "repo/migrate/helper" .}}
  6. <div class="ui three stackable cards">
  7. {{range .Services}}
  8. <a class="ui card df ac" href="{{AppSubUrl}}/repo/migrate?service_type={{.}}&org={{$.Org}}&mirror={{$.Mirror}}">
  9. {{svg (Printf "gitea-%s" .Name) 184}}
  10. <div class="content">
  11. <div class="header tc">
  12. {{.Title}}
  13. </div>
  14. <div class="description tc">
  15. {{(Printf "repo.migrate.%s.description" .Name) | $.locale.Tr}}
  16. </div>
  17. </div>
  18. </a>
  19. {{end}}
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. {{template "base/footer" .}}