summaryrefslogtreecommitdiffstats
path: root/templates/repo/nav.tmpl
diff options
context:
space:
mode:
authorFuXiaoHei <fuxiaohei@hexiaz.com>2014-03-13 14:08:49 +0800
committerFuXiaoHei <fuxiaohei@hexiaz.com>2014-03-13 14:08:49 +0800
commita8d8e7256249cb280b39d114dd6d6eadd4fec187 (patch)
tree453006dbb24bbe88da2c76c4e00017daf6aa2f28 /templates/repo/nav.tmpl
parent3005a0f13e8861c79e3ea84ce480124fbc3c181d (diff)
downloadgitea-a8d8e7256249cb280b39d114dd6d6eadd4fec187.tar.gz
gitea-a8d8e7256249cb280b39d114dd6d6eadd4fec187.zip
single repository setting page ui
Diffstat (limited to 'templates/repo/nav.tmpl')
-rw-r--r--templates/repo/nav.tmpl31
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/repo/nav.tmpl b/templates/repo/nav.tmpl
new file mode 100644
index 0000000000..1e52488897
--- /dev/null
+++ b/templates/repo/nav.tmpl
@@ -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&nbsp;&nbsp;{{.Repository.NumStars}}</button>
+ </div>
+ <div class="btn-group">
+ <button type="button" class="btn btn-default"><i class="fa fa-code-fork"></i>Fork&nbsp;&nbsp;{{.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> \ No newline at end of file