2023-02-13 12:59:59 -05:00
|
|
|
<h4 class="ui top attached header commits-table gt-df gt-ac gt-sb">
|
|
|
|
<div class="commits-table-left gt-df gt-ac">
|
2020-11-01 15:04:26 -05:00
|
|
|
{{if or .PageIsCommits (gt .CommitCount 0)}}
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.CommitCount}} {{.locale.Tr "repo.commits.commits"}} {{if .RefName}}({{.RefName}}){{end}}
|
2021-11-17 18:50:17 -05:00
|
|
|
{{else if .IsNothingToCompare}}
|
2022-08-25 17:55:52 -04:00
|
|
|
{{.locale.Tr "repo.commits.nothing_to_compare"}} {{if .RefName}}({{.RefName}}){{end}}
|
2020-11-01 15:04:26 -05:00
|
|
|
{{else}}
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch}} {{if .RefName}}({{.RefName}}){{end}}
|
2020-11-01 15:04:26 -05:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-02-13 12:59:59 -05:00
|
|
|
<div class="commits-table-right gt-df gt-ac">
|
2020-11-01 15:04:26 -05:00
|
|
|
{{if .PageIsCommits}}
|
2021-11-16 13:18:25 -05:00
|
|
|
<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.BranchNameSubURL}}/search">
|
2020-11-01 15:04:26 -05:00
|
|
|
<div class="ui tiny search input">
|
2022-06-27 16:58:46 -04:00
|
|
|
<input name="q" placeholder="{{.locale.Tr "repo.commits.search"}}" value="{{.Keyword}}" autofocus>
|
2020-11-01 15:04:26 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<input type="checkbox" name="all" id="all" value="true" {{.All}}>
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="all">{{.locale.Tr "repo.commits.search_all"}} </label>
|
2020-11-01 15:04:26 -05:00
|
|
|
</div>
|
2023-03-24 06:35:38 -04:00
|
|
|
<button class="ui primary tiny button gt-mr-0" data-panel="#add-deploy-key-panel" data-tooltip-content={{.locale.Tr "repo.commits.search.tooltip"}}>{{.locale.Tr "repo.commits.find"}}</button>
|
2020-11-01 15:04:26 -05:00
|
|
|
</form>
|
|
|
|
{{else if .IsDiffCompare}}
|
2021-11-16 13:18:25 -05:00
|
|
|
<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-01 15:04:26 -05:00
|
|
|
...
|
2021-11-16 13:18:25 -05:00
|
|
|
<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-01 15:04:26 -05:00
|
|
|
{{end}}
|
2017-12-30 19:47:52 -05:00
|
|
|
</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)}}
|
2021-04-10 23:46:37 -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" .}}
|