Files

37 lines
1.5 KiB
Handlebars
Raw Permalink Normal View History

2024-03-22 20:51:29 +01:00
<h4 class="ui top attached header commits-table tw-flex tw-items-center tw-justify-between">
<div class="commits-table-left flex-text-block">
2020-11-01 21:04:26 +01:00
{{if or .PageIsCommits (gt .CommitCount 0)}}
{{.CommitCount}} {{ctx.Locale.Tr "repo.commits.commits"}}
2021-11-18 00:50:17 +01:00
{{else if .IsNothingToCompare}}
{{ctx.Locale.Tr "repo.commits.nothing_to_compare"}}
2020-11-01 21:04:26 +01:00
{{else}}
{{ctx.Locale.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch}}
2020-11-01 21:04:26 +01:00
{{end}}
</div>
2024-03-15 00:24:59 +01:00
{{if .IsDiffCompare}}
<div class="commits-table-right tw-whitespace-nowrap">
2026-01-01 10:32:19 -08:00
<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID | PathEscape}}" class="ui green sha label tw-mx-0">{{template "repo/commits_ref_name" .CompareInfo.BaseRef}}</a>
{{$.CompareInfo.CompareSeparator}}
<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID | PathEscape}}" class="ui green sha label tw-mx-0">{{template "repo/commits_ref_name" .CompareInfo.HeadRef}}</a>
2024-03-15 00:24:59 +01:00
</div>
{{end}}
2015-08-20 20:18:49 +08:00
</h4>
2015-09-01 19:07:02 -04:00
2024-03-15 00:24:59 +01:00
{{if .PageIsCommits}}
<div class="ui attached segment">
2025-01-12 11:39:46 +08:00
<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.RefTypeNameSubURL}}/search">
2024-03-15 00:24:59 +01:00
<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}}
{{if and .Commits (gt .CommitCount 0)}}
{{template "repo/commits_list" .}}
2015-09-01 19:07:02 -04:00
{{end}}
2015-08-20 20:18:49 +08:00
{{template "base/paginate" .}}