2015-08-20 08:18:49 -04:00
|
|
|
<h4 class="ui top attached header">
|
2017-12-30 19:47:52 -05:00
|
|
|
<div class="ui stackable grid">
|
2019-06-07 16:29:29 -04:00
|
|
|
<div class="five wide column">
|
2019-04-09 16:45:58 -04: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 17:30:52 -05:00
|
|
|
</div>
|
2019-06-07 16:29:29 -04:00
|
|
|
<div class="eleven wide right aligned column">
|
2017-12-30 19:47:52 -05:00
|
|
|
{{if .PageIsCommits}}
|
2018-09-16 18:28:23 -04:00
|
|
|
<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.BranchNameSubURL | EscapePound}}/search">
|
2017-12-30 19:47:52 -05: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-03 20:39:58 -05: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-30 19:47:52 -05:00
|
|
|
</form>
|
|
|
|
{{else if .IsDiffCompare}}
|
2020-02-11 12:02:41 -05:00
|
|
|
<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID}}" class="ui green sha label">{{if not .BaseIsCommit}}{{if .BaseIsBranch}}{{svg "octicon-git-branch" 16}}{{else if .BaseIsTag}}{{svg "octicon-tag" 16}}{{end}}{{.BaseBranch}}{{else}}{{ShortSha .BaseBranch}}{{end}}</a>
|
2019-06-07 16:29:29 -04:00
|
|
|
...
|
2020-02-11 12:02:41 -05:00
|
|
|
<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID}}" class="ui green sha label">{{if not .HeadIsCommit}}{{if .HeadIsBranch}}{{svg "octicon-git-branch" 16}}{{else if .HeadIsTag}}{{svg "octicon-tag" 16}}{{end}}{{.HeadBranch}}{{else}}{{ShortSha .HeadBranch}}{{end}}</a>
|
2017-12-30 19:47:52 -05:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-20 08:18:49 -04:00
|
|
|
</h4>
|
2015-09-01 19:07:02 -04:00
|
|
|
|
2019-04-09 16:45:58 -04:00
|
|
|
{{if and .Commits (gt .CommitCount 0)}}
|
2019-11-01 18:02:41 -04:00
|
|
|
{{template "repo/commits_list" .}}
|
2015-09-01 19:07:02 -04:00
|
|
|
{{end}}
|
2015-08-20 08:18:49 -04:00
|
|
|
|
2018-09-16 18:28:23 -04:00
|
|
|
{{template "base/paginate" .}}
|