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