aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/blame.tmpl
blob: 86c0695cbd85edd575ae0b83a372c6d0925727fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div class="{{TabSizeClass .Editorconfig .FileName}} non-diff-file-content">
	<h4 class="file-header ui top attached header">
		<div class="file-header-left">
			<div class="file-info text grey normal mono">
				<div class="file-info-entry">
					{{.NumLines}} {{.i18n.Tr (TrN .i18n.Lang .NumLines "repo.line" "repo.lines") }}
				</div>
				<div class="file-info-entry">{{FileSize .FileSize}}</div>
			</div>
		</div>
		<div class="file-header-right">
			<div class="ui right file-actions">
				<div class="ui buttons">
					<a class="ui button" href="{{EscapePound $.RawFileLink}}">{{.i18n.Tr "repo.file_raw"}}</a>
					{{if not .IsViewCommit}}
						<a class="ui button" href="{{.RepoLink}}/src/commit/{{.CommitID}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_permalink"}}</a>
					{{end}}
					<a class="ui button" href="{{.RepoLink}}/src/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.normal_view"}}</a>
					<a class="ui button" href="{{.RepoLink}}/commits/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_history"}}</a>
				</div>
			</div>
		</div>
	</h4>
    <div class="ui attached table unstackable segment">
		<div class="file-view code-view">
			<table>
				<tbody>
					<tr>
						<td class="lines-commit">{{.BlameCommitInfo}}</td>
						<td class="lines-num">{{.BlameLineNums}}</td>
						<td class="lines-code"><pre><code class="chroma"><ol class="linenums">{{.BlameContent}}</ol></code></pre></td>
					</tr>
				</tbody>
			</table>
		</div>
    </div>
</div>