diff options
author | Angus Gibson <angus.gibson@anu.edu.au> | 2015-12-09 16:14:54 +1100 |
---|---|---|
committer | Angus Gibson <angus.gibson@anu.edu.au> | 2015-12-09 16:37:04 +1100 |
commit | 9bd3ebe20708b3d61f1cab8daeeffe8748f93852 (patch) | |
tree | 5a663d68003df445a5ac6a821275530ebbf56cf3 /templates/repo/commits.tmpl | |
parent | a576224d0ea0a6a48207002229ae38937bd038a3 (diff) | |
download | gitea-9bd3ebe20708b3d61f1cab8daeeffe8748f93852.tar.gz gitea-9bd3ebe20708b3d61f1cab8daeeffe8748f93852.zip |
Dropdown on commits page to choose branch #1846
I've mostly duplicated the dropdown code from repo/home.tmpl, which
basically only required a change to the URL. This could probably be
broken out into something more modular.
Diffstat (limited to 'templates/repo/commits.tmpl')
-rw-r--r-- | templates/repo/commits.tmpl | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/repo/commits.tmpl b/templates/repo/commits.tmpl index 879f762dfa..0c8ca443c2 100644 --- a/templates/repo/commits.tmpl +++ b/templates/repo/commits.tmpl @@ -2,6 +2,50 @@ <div class="repository commits"> {{template "repo/header" .}} <div class="ui container"> + <div class="fitted item choose reference"> + <div class="ui floating filter dropdown" data-no-results="{{.i18n.Tr "repo.pulls.no_results"}}"> + <div class="ui basic small button"> + <span class="text"> + <i class="octicon octicon-git-branch"></i> + {{if .IsViewBranch}}{{.i18n.Tr "repo.branch"}}{{else}}{{.i18n.Tr "repo.tree"}}{{end}}: + <strong>{{if .IsViewBranch}}{{.BranchName}}{{else}}{{ShortSha .BranchName}}{{end}}</strong> + </span> + <i class="dropdown icon"></i> + </div> + <div class="menu"> + <div class="ui icon search input"> + <i class="filter icon"></i> + <input name="search" placeholder="{{.i18n.Tr "repo.filter_branch_and_tag"}}..."> + </div> + <div class="header"> + <div class="ui grid"> + <div class="two column row"> + <a class="reference column" href="#" data-target="#branch-list"> + <span class="text {{if .IsViewBranch}}black{{end}}"> + <i class="icon octicon octicon-git-branch"></i> {{.i18n.Tr "repo.branches"}} + </span> + </a> + <a class="reference column" href="#" data-target="#tag-list"> + <span class="text {{if .IsViewTag}}black{{end}}"> + <i class="reference tags icon"></i> {{.i18n.Tr "repo.tags"}} + </span> + </a> + </div> + </div> + </div> + <div id="branch-list" class="scrolling menu" {{if .IsViewTag}}style="display: none"{{end}}> + {{range .Branches}} + <div class="item {{if eq $.BranchName .}}selected{{end}}" data-url="{{$.RepoLink}}/commits/{{EscapePound .}}">{{.}}</div> + {{end}} + </div> + <div id="tag-list" class="scrolling menu" {{if .IsViewBranch}}style="display: none"{{end}}> + {{range .Tags}} + <div class="item {{if eq $.BranchName .}}selected{{end}}" data-url="{{$.RepoLink}}/commits/{{EscapePound .}}">{{.}}</div> + {{end}} + </div> + </div> + </div> + </div> {{template "repo/commits_table" .}} </div> </div> |