2024-03-22 13:51:29 -06:00
|
|
|
<h4 class="ui top attached header commits-table tw-flex tw-items-center tw-justify-between">
|
|
|
|
<div class="commits-table-left tw-flex tw-items-center">
|
2020-11-01 13:04:26 -07:00
|
|
|
{{if or .PageIsCommits (gt .CommitCount 0)}}
|
2023-09-25 02:56:50 -06:00
|
|
|
{{.CommitCount}} {{ctx.Locale.Tr "repo.commits.commits"}}
|
2021-11-17 16:50:17 -07:00
|
|
|
{{else if .IsNothingToCompare}}
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.commits.nothing_to_compare"}}
|
2020-11-01 13:04:26 -07:00
|
|
|
{{else}}
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch}}
|
2020-11-01 13:04:26 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2024-03-14 17:24:59 -06:00
|
|
|
{{if .IsDiffCompare}}
|
|
|
|
<div class="commits-table-right tw-whitespace-nowrap">
|
2023-07-04 11:45:45 -06:00
|
|
|
<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID | PathEscape}}" class="ui green sha label gt-mx-0">{{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 13:04:26 -07:00
|
|
|
...
|
2023-07-04 11:45:45 -06:00
|
|
|
<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID | PathEscape}}" class="ui green sha label gt-mx-0">{{if not .HeadIsCommit}}{{if .HeadIsBranch}}{{svg "octicon-git-branch"}}{{else if .HeadIsTag}}{{svg "octicon-tag"}}{{end}}{{.HeadBranch}}{{else}}{{ShortSha .HeadBranch}}{{end}}</a>
|
2024-03-14 17:24:59 -06:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-08-20 06:18:49 -06:00
|
|
|
</h4>
|
2015-09-01 17:07:02 -06:00
|
|
|
|
2024-03-14 17:24:59 -06:00
|
|
|
{{if .PageIsCommits}}
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.BranchNameSubURL}}/search">
|
|
|
|
<div class="ui small fluid action input">
|
|
|
|
{{template "shared/search/input" dict "Value" .Keyword "Placeholder" (ctx.Locale.Tr "search.commit_kind")}}
|
|
|
|
{{template "repo/commits_search_dropdown" .}}
|
|
|
|
{{template "shared/search/button" dict "Tooltip" (ctx.Locale.Tr "repo.commits.search.tooltip")}}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
2019-04-09 14:45:58 -06:00
|
|
|
{{if and .Commits (gt .CommitCount 0)}}
|
2021-04-10 21:46:37 -06:00
|
|
|
{{template "repo/commits_list" .}}
|
2015-09-01 17:07:02 -06:00
|
|
|
{{end}}
|
2015-08-20 06:18:49 -06:00
|
|
|
|
2018-09-16 16:28:23 -06:00
|
|
|
{{template "base/paginate" .}}
|