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.

setting.tmpl 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. {{if .IsSuccess}}<p class="alert alert-success">Repository options has been successfully updated.</p>{{else if .HasError}}<p class="alert alert-danger form-error">{{.ErrorMsg}}</p>{{end}}
  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">Name</label>
  25. <div class="col-md-9">
  26. <input class="form-control" name="name" value="{{.Repository.Name}}" />
  27. </div>
  28. </div>
  29. <div class="form-group">
  30. <label class="col-md-3 text-right">Description</label>
  31. <div class="col-md-9">
  32. <textarea class="form-control" name="desc" id="repo-desc" rows="3">{{.Repository.Description}}</textarea>
  33. </div>
  34. </div>
  35. <div class="form-group">
  36. <label class="col-md-3 text-right">Official Site</label>
  37. <div class="col-md-9">
  38. <input type="url" class="form-control" name="site" value="{{.Repository.Website}}" />
  39. </div>
  40. </div>
  41. <!-- <div class="form-group">
  42. <label class="col-md-3 text-right">Default Branch</label>
  43. <div class="col-md-9">
  44. <select name="branch" id="repo-default-branch" class="form-control">
  45. <option value="">Branch</option>
  46. </select>
  47. </div>
  48. </div> -->
  49. <div class="form-group">
  50. <div class="col-md-9 col-md-offset-3">
  51. <button class="btn btn-primary" type="submit">Save Options</button>
  52. </div>
  53. </div>
  54. </form>
  55. </div>
  56. </div>
  57. <div class="panel panel-warning">
  58. <div class="panel-heading">
  59. Danger Zone
  60. </div>
  61. <div class="panel-body">
  62. <button type="button" class="btn btn-default pull-right" href="#delete-repository-modal" data-toggle="modal">
  63. Delete this repository
  64. </button>
  65. <dd>
  66. <dt>Delete this repository.</dt>
  67. <dl>Once you delete a repository, there is no going back. Please be certain.</dl>
  68. </dd>
  69. <div class="modal fade" id="delete-repository-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  70. <div class="modal-dialog">
  71. <form action="/{{.Owner.Name}}/{{.Repository.Name}}/settings" method="post" class="modal-content">
  72. {{.CsrfTokenHtml}}
  73. <input type="hidden" name="action" value="delete">
  74. <div class="modal-header">
  75. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  76. <h4 class="modal-title" id="myModalLabel">Delete repository</h4>
  77. </div>
  78. <div class="modal-body">
  79. <div class="form-group">
  80. <label>Please enter your repository name "<strong class="text-danger">{{.Repository.Name}}</strong>"</label>
  81. <input name="repository" class="form-control" type="text" placeholder="Type your repository name" required="required">
  82. </div>
  83. </div>
  84. <div class="modal-footer">
  85. <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
  86. <button class="btn btn-danger btn-lg">I understand the consequences, delete this repository</button>
  87. </div>
  88. </form>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. {{template "base/footer" .}}