setting.tmpl 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. {{template "repo/nav" .}}
  4. {{template "repo/toolbar" .}}
  5. <div id="body" class="container">
  6. <div id="user-setting-nav" class="col-md-3">
  7. <ul class="list-group">
  8. <li class="list-group-item active"><a href="/{{.Owner.Name}}/{{.Repository.Name}}/settings">Options</a></li>
  9. <!--<li class="list-group-item"><a href="#">Collaborators</a></li>
  10. <li class="list-group-item"><a href="#">Notifications</a></li>-->
  11. </ul>
  12. </div>
  13. <div id="repo-setting-container" class="col-md-9">
  14. {{template "base/alert" .}}
  15. <div class="panel panel-default">
  16. <div class="panel-heading">
  17. Repository Options
  18. </div>
  19. <div class="panel-body">
  20. <form action="/{{.Owner.Name}}/{{.Repository.Name}}/settings" method="post" class="form-horizontal">
  21. {{.CsrfTokenHtml}}
  22. <input type="hidden" name="action" value="update">
  23. <div class="form-group">
  24. <label class="col-md-3 text-right" for="repo-setting-name">Name</label>
  25. <div class="col-md-9">
  26. <input class="form-control" name="name" value="{{.Repository.Name}}" title="{{.Repository.Name}}" id="repo-setting-name"/>
  27. <p class="help-block hidden"><span class="text-danger">Cautious : </span>your repository name is changing !</p>
  28. </div>
  29. </div>
  30. <div class="form-group">
  31. <label class="col-md-3 text-right">Description</label>
  32. <div class="col-md-9">
  33. <textarea class="form-control" name="desc" id="repo-desc" rows="3">{{.Repository.Description}}</textarea>
  34. </div>
  35. </div>
  36. <div class="form-group">
  37. <label class="col-md-3 text-right">Official Site</label>
  38. <div class="col-md-9">
  39. <input type="url" class="form-control" name="site" value="{{.Repository.Website}}" />
  40. </div>
  41. </div>
  42. <hr>
  43. <div class="form-group">
  44. <label class="col-md-3 text-right">Default Branch</label>
  45. <div class="col-md-9">
  46. <select name="branch" id="repo-default-branch" class="form-control">
  47. <option value="{{.Repository.DefaultBranch}}">{{.Repository.DefaultBranch}}</option>
  48. {{range .Branches}}
  49. {{if eq . $.Repository.DefaultBranch}}{{else}}<option value="{{.}}">{{.}}</option>{{end}}
  50. {{end}}
  51. </select>
  52. </div>
  53. </div>
  54. <div class="form-group">
  55. <div class="col-md-offset-3 col-md-9">
  56. <div class="checkbox">
  57. <label style="line-height: 15px;">
  58. <input type="checkbox" name="goget" {{if .Repository.IsGoget}}checked{{end}}>
  59. <strong>Enable 'go get' meta</strong>
  60. </label>
  61. </div>
  62. </div>
  63. </div>
  64. <div class="form-group">
  65. <div class="col-md-9 col-md-offset-3">
  66. <button class="btn btn-primary" type="submit">Save Options</button>
  67. </div>
  68. </div>
  69. </form>
  70. </div>
  71. </div>
  72. <div class="panel panel-warning">
  73. <div class="panel-heading">
  74. Danger Zone
  75. </div>
  76. <div class="panel-body">
  77. <button type="button" class="btn btn-default pull-right" href="#transfer-repository-modal" data-toggle="modal">
  78. Transfer ownership
  79. </button>
  80. <dd>
  81. <dt>Transfer ownership</dt>
  82. <dl>Transfer this repo to another user or to an organization where you have admin rights.</dl>
  83. </dd>
  84. <div class="modal fade" id="transfer-repository-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  85. <div class="modal-dialog">
  86. <form action="/{{.Owner.Name}}/{{.Repository.Name}}/settings" method="post" class="modal-content">
  87. {{.CsrfTokenHtml}}
  88. <input type="hidden" name="action" value="transfer">
  89. <div class="modal-header">
  90. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  91. <h4 class="modal-title" id="myModalLabel">Do you really want to transfer this repo?</h4>
  92. </div>
  93. <div class="modal-body">
  94. <div class="alert alert-warning">This is important, pay attention.</div>
  95. <ul>
  96. <!-- <li>Transferring may be delayed until the new owner approves the transfer.</li> -->
  97. <!-- <li>If you are transferring into an org, teams <strong>will not be set</strong>. An owner on the org will need to set teams for the repo.</li> -->
  98. <li>Admin rights will be transferred to the new owner, you <strong>will lose admin rights</strong>.</li>
  99. <!-- <li>Admin rights will be transferred to the new owner, you <strong>may lose admin rights</strong> if you are transferring into an organization account.</li> -->
  100. <li>Redirect entries <strong>will NOT be</strong> set up from the previous location.</li>
  101. <li>Git access <strong>will NOT continue</strong> to work from the previous location.</li>
  102. </ul>
  103. <div class="form-group">
  104. <label>Please type the name of the repository to confirm "<strong class="text-danger">{{.Repository.Name}}</strong>"</label>
  105. <input name="repository" class="form-control" type="text" placeholder="Type your repository name" required="required">
  106. </div>
  107. <div class="form-group">
  108. <label>Please type the name of the new owner:</label>
  109. <input name="owner" class="form-control" type="text" placeholder="Type new owner's name" required="required">
  110. </div>
  111. </div>
  112. <div class="modal-footer">
  113. <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
  114. <button class="btn btn-danger btn-lg">I understand the consequences, transfer this repository</button>
  115. </div>
  116. </form>
  117. </div>
  118. </div>
  119. </div>
  120. <hr>
  121. <div class="panel-body">
  122. <button type="button" class="btn btn-default pull-right" href="#delete-repository-modal" data-toggle="modal">
  123. Delete this repository
  124. </button>
  125. <dd>
  126. <dt>Delete this repository</dt>
  127. <dl>Once you delete a repository, there is no going back. Please be certain.</dl>
  128. </dd>
  129. <div class="modal fade" id="delete-repository-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  130. <div class="modal-dialog">
  131. <form action="/{{.Owner.Name}}/{{.Repository.Name}}/settings" method="post" class="modal-content">
  132. {{.CsrfTokenHtml}}
  133. <input type="hidden" name="action" value="delete">
  134. <div class="modal-header">
  135. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  136. <h4 class="modal-title" id="myModalLabel">Delete repository</h4>
  137. </div>
  138. <div class="modal-body">
  139. <div class="form-group">
  140. <label>Please enter your repository name "<strong class="text-danger">{{.Repository.Name}}</strong>"</label>
  141. <input name="repository" class="form-control" type="text" placeholder="Type your repository name" required="required">
  142. </div>
  143. </div>
  144. <div class="modal-footer">
  145. <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
  146. <button class="btn btn-danger btn-lg">I understand the consequences, delete this repository</button>
  147. </div>
  148. </form>
  149. </div>
  150. </div>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. {{template "base/footer" .}}