commit
18ba149137
@ -0,0 +1,31 @@ |
||||
<div id="gogs-body-nav" class="gogs-repo-nav"> |
||||
<div class="container"> |
||||
<div class="gogs-repo-btns pull-right"> |
||||
<div class="btn-group" id="gogs-repo-watching"> |
||||
<button type="button" class="btn btn-default"><i class="fa fa-eye"></i>Watch {x}</button> |
||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> |
||||
<span class="caret"></span> |
||||
<span class="sr-only">Toggle Dropdown</span> |
||||
</button> |
||||
<div class="dropdown-menu" role="menu"> |
||||
<div class="dropdown-item" data-val="not-watching"> |
||||
<h4 role="presentation" class="dropdown-header">Not Watching</h4> |
||||
<p class="description">You only receive notifications for conversations in which you participate or are @mentioned.</p> |
||||
<p class="divider"></p> |
||||
</div> |
||||
<div class="dropdown-item" data-val="watching"> |
||||
<h4 role="presentation" class="dropdown-header">Watching</h4> |
||||
<p class="description">You receive notifications for all conversations in this repository.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="btn-group"> |
||||
<button type="button" class="btn btn-default"><i class="fa fa-star"></i>Star {{.Repository.NumStars}}</button> |
||||
</div> |
||||
<div class="btn-group"> |
||||
<button type="button" class="btn btn-default"><i class="fa fa-code-fork"></i>Fork {{.Repository.NumForks}}</button> |
||||
</div> |
||||
</div> |
||||
<h3><i class="fa fa-book fa-lg"></i><a href="/{{.Owner.Name}}/">{{.Owner.Name}}</a> / {{.Repository.Name}}</h3> |
||||
</div> |
||||
</div> |
@ -0,0 +1,33 @@ |
||||
{{template "base/head" .}} |
||||
{{template "base/navbar" .}} |
||||
{{template "repo/nav" .}} |
||||
{{template "repo/toolbar" .}} |
||||
<div id="gogs-body" class="container"> |
||||
<div id="gogs-user-setting-nav" class="col-md-3"> |
||||
<h4>Repository Settings</h4> |
||||
<ul class="list-group" data-init="tabs"> |
||||
<li class="list-group-item"><a href="#options" data-toggle="tab">Options</a></li> |
||||
<!--<li class="list-group-item" data-toggle="tab"><a href="#">Collaborators</a></li> |
||||
<li class="list-group-item" data-toggle="tab"><a href="#">Notifications</a></li>--> |
||||
<li class="list-group-item"><a href="#delete" data-toggle="tab">Delete</a></li> |
||||
</ul> |
||||
</div> |
||||
<div id="gogs-repo-setting-container" class="col-md-9 tab-content"> |
||||
<div id="options" class="tab-pane"> |
||||
repo-options |
||||
</div> |
||||
<div id="delete" class="tab-pane"> |
||||
<h4>Delete Repository</h4> |
||||
<p class="alert alert-warning">Unexpected bad things will happen if you don't read this!</p> |
||||
<p>This action <strong>CANNOT</strong> be undone. This will delete the repository, wiki, issues, and comments permanently. </p> |
||||
|
||||
<form action="/repo/delete" method="post"> |
||||
<input type="hidden" name="reponame" value="{{.Repository.Name}}"/> |
||||
<input type="hidden" name="username" value="{{.Owner.Name}}"/> |
||||
<hr/> |
||||
<button class="btn btn-danger btn-lg">I understand the consequences, delete this repository</button> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
{{template "base/footer" .}} |
Loading…
Reference in new issue