mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
f9cdbb889a
- Add a indication to the file history if the file has been renamed, this indication contains a link to browse the history of the file further. - Added unit testing. - Added integration testing. - Resolves https://codeberg.org/forgejo/forgejo/issues/1279 (cherry picked from commit72c297521b
) (cherry picked from commit283f964894
) Conflicts: options/locale/locale_en-US.ini https://codeberg.org/forgejo/forgejo/pulls/1550 (cherry picked from commit7c30af7fde
) (cherry picked from commitf3be6eb269
) (cherry picked from commit78e1755b94
) (cherry picked from commit9f30b92009
) (cherry picked from commitbb694684a4
) (cherry picked from commit721f0ccf3e
) (cherry picked from commit6a6ec50130
) [GITEA] Detect file rename and show in history (squash) ctx.Locale (cherry picked from commit08698d747f
)
23 lines
853 B
Go HTML Template
23 lines
853 B
Go HTML Template
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository commits">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
{{template "repo/sub_menu" .}}
|
|
<div class="repo-button-row">
|
|
<div class="gt-df gt-ac">
|
|
{{template "repo/branch_dropdown" dict "root" . "ContainerClasses" "gt-mr-2"}}
|
|
<a href="{{.RepoLink}}/graph" class="ui basic small compact button">
|
|
{{svg "octicon-git-branch"}}
|
|
{{ctx.Locale.Tr "repo.commit_graph"}}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{{template "repo/commits_table" .}}
|
|
{{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}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|