2020-11-02 01:34:26 +05:30
|
|
|
<h4 class="ui top attached header commits-table df ac sb">
|
|
|
|
<div class="commits-table-left df ac">
|
|
|
|
{{if or .PageIsCommits (gt .CommitCount 0)}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.CommitCount}} {{.locale.Tr "repo.commits.commits"}} {{if .RefName}}({{.RefName}}){{end}}
|
2021-11-18 05:20:17 +05:30
|
|
|
{{else if .IsNothingToCompare}}
|
2022-08-26 03:25:52 +05:30
|
|
|
{{.locale.Tr "repo.commits.nothing_to_compare"}} {{if .RefName}}({{.RefName}}){{end}}
|
2020-11-02 01:34:26 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch}} {{if .RefName}}({{.RefName}}){{end}}
|
2020-11-02 01:34:26 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="commits-table-right df ac">
|
|
|
|
{{if .PageIsCommits}}
|
2021-11-16 23:48:25 +05:30
|
|
|
<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.BranchNameSubURL}}/search">
|
2020-11-02 01:34:26 +05:30
|
|
|
<div class="ui tiny search input">
|
2022-06-28 02:28:46 +05:30
|
|
|
<input name="q" placeholder="{{.locale.Tr "repo.commits.search"}}" value="{{.Keyword}}" autofocus>
|
2020-11-02 01:34:26 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<input type="checkbox" name="all" id="all" value="true" {{.All}}>
|
2022-06-28 02:28:46 +05:30
|
|
|
<label for="all">{{.locale.Tr "repo.commits.search_all"}} </label>
|
2020-11-02 01:34:26 +05:30
|
|
|
</div>
|
2022-06-28 02:28:46 +05:30
|
|
|
<button class="ui primary tiny button mr-0 tooltip" data-panel="#add-deploy-key-panel" data-content={{.locale.Tr "repo.commits.search.tooltip"}}>{{.locale.Tr "repo.commits.find"}}</button>
|
2020-11-02 01:34:26 +05:30
|
|
|
</form>
|
|
|
|
{{else if .IsDiffCompare}}
|
2021-11-16 23:48:25 +05:30
|
|
|
<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID | PathEscape}}" 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>
|
2020-11-02 01:34:26 +05:30
|
|
|
...
|
2021-11-16 23:48:25 +05:30
|
|
|
<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID | PathEscape}}" 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>
|
2020-11-02 01:34:26 +05:30
|
|
|
{{end}}
|
2017-12-31 06:17:52 +05:30
|
|
|
</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)}}
|
2021-04-11 09:16:37 +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" .}}
|