mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-12 15:19:35 +08:00
36 lines
1.2 KiB
Handlebars
36 lines
1.2 KiB
Handlebars
{{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="repo-button-row-left">
|
|
|
|
{{$branchDropdownCurrentRefType := "branch"}}
|
|
{{$branchDropdownCurrentRefShortName := .BranchName}}
|
|
{{if .IsViewTag}}
|
|
{{$branchDropdownCurrentRefType := "tag"}}
|
|
{{$branchDropdownCurrentRefShortName := .TagName}}
|
|
{{end}}
|
|
{{template "repo/branch_dropdown" dict
|
|
"Repository" .Repository
|
|
"ShowTabBranches" true
|
|
"ShowTabTags" true
|
|
"CurrentRefType" $branchDropdownCurrentRefType
|
|
"CurrentRefShortName" $branchDropdownCurrentRefShortName
|
|
"CurrentTreePath" .TreePath
|
|
"RefLinkTemplate" "{RepoLink}/commits/{RefType}/{RefShortName}/{TreePath}"
|
|
"AllowCreateNewRef" .CanCreateBranch
|
|
}}
|
|
|
|
<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" .}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|