2024-03-23 01:21:29 +05:30
< 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-02 01:34:26 +05:30
{{ if or .PageIsCommits ( gt .CommitCount 0 ) }}
2024-03-24 14:39:26 +05:30
{{ ctx .Locale.TrN .CommitCount "repo.n_commit_one" "repo.n_commit_few" ( StringUtils .ToString .CommitCount ) }}
2021-11-18 05:20:17 +05:30
{{ else if .IsNothingToCompare }}
2023-09-25 14:26:50 +05:30
{{ ctx .Locale.Tr "repo.commits.nothing_to_compare" }}
2020-11-02 01:34:26 +05:30
{{ else }}
2023-09-25 14:26:50 +05:30
{{ ctx .Locale.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch }}
2020-11-02 01:34:26 +05:30
{{ end }}
< / div >
2024-03-15 04:54:59 +05:30
{{ if .IsDiffCompare }}
< div class = "commits-table-right tw-whitespace-nowrap" >
2023-07-04 23:15:45 +05:30
< 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-02 01:34:26 +05:30
...
2023-07-04 23:15:45 +05:30
< 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-15 04:54:59 +05:30
< / div >
{{ end }}
2015-08-20 17:48:49 +05:30
< / h4 >
2015-09-02 04:37:02 +05:30
2024-03-15 04:54:59 +05:30
{{ 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-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" . }}