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.

33 lines
1.6 KiB

10 years ago
  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. {{template "repo/nav" .}}
  4. {{template "repo/toolbar" .}}
  5. <div id="gogs-body" class="container">
  6. <div id="gogs-user-setting-nav" class="col-md-3">
  7. <h4>Repository Settings</h4>
  8. <ul class="list-group" data-init="tabs">
  9. <li class="list-group-item"><a href="#options" data-toggle="tab">Options</a></li>
  10. <!--<li class="list-group-item" data-toggle="tab"><a href="#">Collaborators</a></li>
  11. <li class="list-group-item" data-toggle="tab"><a href="#">Notifications</a></li>-->
  12. <li class="list-group-item"><a href="#delete" data-toggle="tab">Delete</a></li>
  13. </ul>
  14. </div>
  15. <div id="gogs-repo-setting-container" class="col-md-9 tab-content">
  16. <div id="options" class="tab-pane">
  17. repo-options
  18. </div>
  19. <div id="delete" class="tab-pane">
  20. <h4>Delete Repository</h4>
  21. <p class="alert alert-warning">Unexpected bad things will happen if you don't read this!</p>
  22. <p>This action <strong>CANNOT</strong> be undone. This will delete the repository, wiki, issues, and comments permanently. </p>
  23. <form action="/repo/delete" method="post">
  24. <input type="hidden" name="userId" value="{{.Owner.Id}}"/>
  25. <input type="hidden" name="userName" value="{{.Owner.Name}}"/>
  26. <input type="hidden" name="repoId" value="{{.Repository.Id}}"/>
  27. <hr/>
  28. <button class="btn btn-danger btn-lg">I understand the consequences, delete this repository</button>
  29. </form>
  30. </div>
  31. </div>
  32. </div>
  33. {{template "base/footer" .}}