mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:38:58 +00:00
d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
20 lines
614 B
Handlebars
20 lines
614 B
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content repository commits">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
{{template "repo/sub_menu" .}}
|
|
<div class="ui secondary stackable menu mobile--margin-between-items">
|
|
{{template "repo/branch_dropdown" dict "root" .}}
|
|
<div class="fitted item">
|
|
<a href="{{.RepoLink}}/graph" class="ui basic small compact button">
|
|
<span class="text">
|
|
{{svg "octicon-git-branch"}}
|
|
</span>
|
|
{{.locale.Tr "repo.commit_graph"}}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{{template "repo/commits_table" .}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|