2015-08-20 17:48:49 +05:30
<h4 class="ui top attached header">
2017-12-31 06:17:52 +05:30
<div class="ui stackable grid">
2019-06-08 01:59:29 +05:30
<div class="five wide column">
2019-04-10 02:15:58 +05:30
{{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-08 04:00:52 +05:30
</div>
2019-06-08 01:59:29 +05:30
<div class="eleven wide right aligned column">
2017-12-31 06:17:52 +05:30
{{if .PageIsCommits}}
2018-09-17 03:58:23 +05:30
<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.BranchNameSubURL | EscapePound}}/search">
2017-12-31 06:17:52 +05:30
<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 07:09:58 +05:30
<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 06:17:52 +05:30
</form>
{{else if .IsDiffCompare}}
2020-09-12 01:49:00 +05:30
<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-08 01:59:29 +05:30
...
2020-09-12 01:49:00 +05:30
<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 06:17:52 +05:30
{{end}}
</div>
</div>
2015-08-20 17:48:49 +05:30
</h4>
2015-09-02 04:37:02 +05:30
2019-04-10 02:15:58 +05:30
{{if and .Commits (gt .CommitCount 0)}}
2019-11-02 03:32:41 +05:30
{{template "repo/commits_list" .}}
2015-09-02 04:37:02 +05:30
{{end}}
2015-08-20 17:48:49 +05:30
2018-09-17 03:58:23 +05:30
{{template "base/paginate" .}}