2015-08-20 12:18:49 +00:00
<h4 class="ui top attached header">
2017-12-31 00:47:52 +00:00
<div class="ui stackable grid">
2019-06-07 20:29:29 +00:00
<div class="five wide column">
2019-04-09 20:45:58 +00:00
{{if or .PageIsCommits (gt .CommitCount 0)}}
{{.CommitCount}} {{.i18n.Tr "repo.commits.commits"}} {{if .Branch}}({{.Branch}}){{end}}
{{else}}
{{.i18n.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch }} {{if .Branch}}({{.Branch}}){{end}}
{{end}}
2015-12-07 22:30:52 +00:00
</div>
2019-06-07 20:29:29 +00:00
<div class="eleven wide right aligned column">
2017-12-31 00:47:52 +00:00
{{if .PageIsCommits}}
2018-09-16 22:28:23 +00:00
<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.BranchNameSubURL | EscapePound}}/search">
2017-12-31 00:47:52 +00:00
<div class="ui tiny search input">
<input name="q" placeholder="{{.i18n.Tr "repo.commits.search"}}" value="{{.Keyword}}" autofocus>
</div>
<div class="ui checkbox">
<input type="checkbox" name="all" id="all" value="true" {{.All}}>
<label for="all">{{.i18n.Tr "repo.commits.search_all"}} </label>
</div>
2019-12-04 01:39:58 +00:00
<button class="ui blue tiny button" data-panel=" #add - deploy - key - panel " data-tooltip= {{ .i18n.Tr " repo . commits . search . tooltip " }}> {{ .i18n.Tr " repo . commits . find " }}</button>
2017-12-31 00:47:52 +00:00
</form>
{{else if .IsDiffCompare}}
2020-09-11 20:19:00 +00:00
<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID}}" class="ui green sha label">{{if not .BaseIsCommit}}{{if .BaseIsBranch}}{{svg "octicon-git-branch"}}{{else if .BaseIsTag}}{{svg "octicon-tag"}}{{end}}{{.BaseBranch}}{{else}}{{ShortSha .BaseBranch}}{{end}}</a>
2019-06-07 20:29:29 +00:00
...
2020-09-11 20:19:00 +00:00
<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID}}" class="ui green sha label">{{if not .HeadIsCommit}}{{if .HeadIsBranch}}{{svg "octicon-git-branch"}}{{else if .HeadIsTag}}{{svg "octicon-tag"}}{{end}}{{.HeadBranch}}{{else}}{{ShortSha .HeadBranch}}{{end}}</a>
2017-12-31 00:47:52 +00:00
{{end}}
</div>
</div>
2015-08-20 12:18:49 +00:00
</h4>
2015-09-01 23:07:02 +00:00
2019-04-09 20:45:58 +00:00
{{if and .Commits (gt .CommitCount 0)}}
2019-11-01 22:02:41 +00:00
{{template "repo/commits_list" .}}
2015-09-01 23:07:02 +00:00
{{end}}
2015-08-20 12:18:49 +00:00
2018-09-16 22:28:23 +00:00
{{template "base/paginate" .}}