mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-19 17:01:12 +00:00
Followup to https://codeberg.org/forgejo/forgejo/pulls/1442 Move the rename notice to a more suitable place. Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8818 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: 0ko <0ko@noreply.codeberg.org> Co-committed-by: 0ko <0ko@noreply.codeberg.org>
46 lines
2.1 KiB
Go HTML Template
46 lines
2.1 KiB
Go HTML Template
<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">
|
|
{{if or .PageIsCommits (gt .CommitCount 0)}}
|
|
{{ctx.Locale.TrN .CommitCount "repo.n_commit_one" "repo.n_commit_few" (ctx.Locale.PrettyNumber .CommitCount)}}
|
|
{{else if .IsNothingToCompare}}
|
|
{{ctx.Locale.Tr "repo.commits.nothing_to_compare"}}
|
|
{{else}}
|
|
{{ctx.Locale.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch}}
|
|
{{end}}
|
|
</div>
|
|
{{if .IsDiffCompare}}
|
|
<div class="commits-table-right tw-whitespace-nowrap">
|
|
<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID | PathEscape}}" class="primary sha label tw-mx-0">
|
|
<span class="shortsha">{{if not .BaseIsCommit}}{{if .BaseIsBranch}}{{svg "octicon-git-branch"}}{{else if .BaseIsTag}}{{svg "octicon-tag"}}{{end}}{{.BaseBranch}}{{else}}{{ShortSha .BaseBranch}}{{end}}</span>
|
|
</a>
|
|
...
|
|
<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID | PathEscape}}" class="primary sha label tw-mx-0">
|
|
<span class="shortsha">{{if not .HeadIsCommit}}{{if .HeadIsBranch}}{{svg "octicon-git-branch"}}{{else if .HeadIsTag}}{{svg "octicon-tag"}}{{end}}{{.HeadBranch}}{{else}}{{ShortSha .HeadBranch}}{{end}}</span>
|
|
</a>
|
|
</div>
|
|
{{end}}
|
|
</h4>
|
|
|
|
{{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}}
|
|
|
|
{{if and .Commits (gt .CommitCount 0)}}
|
|
{{template "repo/commits_list" .}}
|
|
{{end}}
|
|
|
|
{{if .OldFilename}}
|
|
<div class="ui bottom attached header">
|
|
<span>{{ctx.Locale.Tr "repo.commits.renamed_from" .OldFilename}} (<a href="{{.OldFilenameHistory}}">{{ctx.Locale.Tr "repo.commits.browse_further"}}</a>)</span>
|
|
</div>
|
|
{{end}}
|
|
|
|
{{template "base/paginate" .}}
|