2023-02-13 17:59:59 +00: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 20:04:26 +00:00
{{ if or .PageIsCommits ( gt .CommitCount 0 ) }}
2023-09-25 13:15:51 +00:00
{{ .CommitCount }} {{ ctx .Locale.Tr "repo.commits.commits" }}
2021-11-17 23:50:17 +00:00
{{ else if .IsNothingToCompare }}
2023-09-25 13:15:51 +00:00
{{ ctx .Locale.Tr "repo.commits.nothing_to_compare" }}
2020-11-01 20:04:26 +00:00
{{ else }}
2023-09-25 13:15:51 +00:00
{{ ctx .Locale.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch }}
2020-11-01 20:04:26 +00:00
{{ end }}
< / div >
2023-07-29 16:19:12 +00:00
< div class = "commits-table-right gt-whitespace-nowrap" >
2020-11-01 20:04:26 +00:00
{{ if .PageIsCommits }}
2021-11-16 18:18:25 +00:00
< form class = "ignore-dirty" action = " {{ .RepoLink }} /commits/ {{ .BranchNameSubURL }} /search" >
2020-11-01 20:04:26 +00:00
< div class = "ui tiny search input" >
2023-09-25 13:15:51 +00:00
< input name = "q" placeholder = " {{ ctx .Locale.Tr "repo.commits.search" }} " value = " {{ .Keyword }} " autofocus >
2020-11-01 20:04:26 +00:00
< / div >
2023-07-04 17:45:45 +00:00
< div class = "ui tiny checkbox" >
< input type = "checkbox" name = "all" value = "true" {{ .All }} >
2023-09-25 13:15:51 +00:00
< label > {{ ctx .Locale.Tr "repo.commits.search_all" }} </ label >
2020-11-01 20:04:26 +00:00
< / div >
2023-09-25 13:15:51 +00:00
< button class = "ui primary tiny button gt-mr-0" data-panel = "#add-deploy-key-panel" data-tooltip-content = {{ ctx .Locale.Tr "repo.commits.search.tooltip" }} > {{ ctx .Locale.Tr "repo.commits.find" }} </button >
2020-11-01 20:04:26 +00:00
< / form >
{{ else if .IsDiffCompare }}
2023-07-04 17:45:45 +00: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 20:04:26 +00:00
...
2023-07-04 17:45:45 +00: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 >
2020-11-01 20:04:26 +00:00
{{ end }}
2017-12-31 00:47:52 +00:00
< / div >
2015-08-20 12:18:49 +00:00
< / h4 >
2015-09-01 23:07:02 +00:00
2019-04-09 20:45:58 +00:00
{{ if and .Commits ( gt .CommitCount 0 ) }}
2021-04-11 03:46:37 +00:00
{{ template "repo/commits_list" . }}
2015-09-01 23:07:02 +00:00
{{ end }}
2015-08-20 12:18:49 +00:00
2018-09-16 22:28:23 +00:00
{{ template "base/paginate" . }}