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

fork.tmpl 1.5 kB

3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {{template "base/head" .}}
  2. <div class="repository new fork">
  3. <div class="ui middle very relaxed page grid">
  4. <div class="column">
  5. <form class="ui form" action="{{.Link}}" method="post" id="create_repo_form">
  6. {{.CsrfTokenHtml}}
  7. <h3 class="ui top attached header">
  8. {{.i18n.Tr "new_fork"}}
  9. </h3>
  10. <div class="ui attached segment">
  11. {{template "base/alert" .}}
  12. <div class="inline field">
  13. <label>{{.i18n.Tr "repo.fork_from"}}</label>
  14. <a href="{{AppSubUrl}}/{{.ForkFrom}}">{{.ForkDisplayName}}</a>
  15. </div>
  16. {{template "repo/repo_name" .}}
  17. <div class="inline field">
  18. <label>{{.i18n.Tr "repo.visibility"}}</label>
  19. <div class="ui read-only checkbox">
  20. <input type="checkbox" {{if .IsPrivate}}checked{{end}}>
  21. <label>{{.i18n.Tr "repo.visibility_helper" | Safe}}</label>
  22. </div>
  23. <span class="help">{{.i18n.Tr "repo.fork_visibility_helper"}}</span>
  24. </div>
  25. <div class="inline field {{if .Err_Description}}error{{end}}">
  26. <label for="description">{{.i18n.Tr "repo.repo_desc"}}</label>
  27. <textarea id="description" name="description" maxlength="255">{{.description}}</textarea>
  28. </div>
  29. <div class="inline field">
  30. <label></label>
  31. <button class="ui green button">
  32. {{.i18n.Tr "repo.fork_repo"}}
  33. </button>
  34. <a class="ui button" href="{{AppSubUrl}}/{{.ForkFrom}}">{{.i18n.Tr "cancel"}}</a>
  35. </div>
  36. </div>
  37. </form>
  38. </div>
  39. </div>
  40. </div>
  41. {{template "base/footer" .}}