summaryrefslogtreecommitdiffstats
path: root/templates/repo/commits.tmpl
blob: 86df88f6e32d1c0cbf0fa3ef4563474c01d4517f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{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="tw-flex tw-items-center">
				{{template "repo/branch_dropdown" dict "root" . "ContainerClasses" "tw-mr-1"}}
				<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" .}}