summaryrefslogtreecommitdiffstats
path: root/templates/repo/commits.tmpl
diff options
context:
space:
mode:
authorKjell Kvinge <kjell@kvinge.biz>2016-12-29 00:44:32 +0100
committerLunny Xiao <xiaolunwen@gmail.com>2016-12-29 07:44:32 +0800
commit22e1bd31c68586e963262db964d6a83f6115e56f (patch)
tree39d669cd4b982063512320e91ed359357a518f1f /templates/repo/commits.tmpl
parent35d9378e4e1b3b1c15db3a7e7237a55fa96919a1 (diff)
downloadgitea-22e1bd31c68586e963262db964d6a83f6115e56f.tar.gz
gitea-22e1bd31c68586e963262db964d6a83f6115e56f.zip
commithgraph / timeline (#428)
* Add model and tests for graph * Add route and router for graph * Add assets for graph * Add template for graph
Diffstat (limited to 'templates/repo/commits.tmpl')
-rw-r--r--templates/repo/commits.tmpl16
1 files changed, 14 insertions, 2 deletions
diff --git a/templates/repo/commits.tmpl b/templates/repo/commits.tmpl
index 88a87ef8ce..198f3cc08d 100644
--- a/templates/repo/commits.tmpl
+++ b/templates/repo/commits.tmpl
@@ -2,8 +2,20 @@
<div class="repository commits">
{{template "repo/header" .}}
<div class="ui container">
- {{template "repo/branch_dropdown" .}}
- {{template "repo/commits_table" .}}
+ <div class="ui secondary menu">
+ {{template "repo/branch_dropdown" .}}
+ <div class="fitted item">
+ <div class="ui breadcrumb">
+ <a href="{{.RepoLink}}/graph">
+ <span class="text">
+ <i class="octicon octicon-git-branch"></i>
+ </span>
+ commit graph
+ </a>
+ </div>
+ </div>
+ </div>
+ {{template "repo/commits_table" .}}
</div>
</div>
{{template "base/footer" .}}