aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/file_info.tmpl
blob: 44256a0dcb21ce70dbb7b4459a5a9ff1fb7e3adf (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
<div class="file-info text grey normal gt-mono">
	{{if .FileIsSymlink}}
		<div class="file-info-entry">
			{{.locale.Tr "repo.symbolic_link"}}
		</div>
	{{end}}
	{{if .NumLinesSet}}{{/* Explicit attribute needed to show 0 line changes */}}
		<div class="file-info-entry">
			{{.NumLines}} {{.locale.TrN .NumLines "repo.line" "repo.lines"}}
		</div>
	{{end}}
	{{if .FileSize}}
		<div class="file-info-entry">
			{{FileSize .FileSize}}{{if .IsLFSFile}} ({{.locale.Tr "repo.stored_lfs"}}){{end}}
		</div>
	{{end}}
	{{if .LFSLock}}
		<div class="file-info-entry ui" data-tooltip-content="{{.LFSLockHint}}">
			{{svg "octicon-lock" 16 "gt-mr-2"}}
			<a href="{{.LFSLockOwnerHomeLink}}">{{.LFSLockOwner}}</a>
		</div>
	{{end}}
	{{if .LexerName}}
		<div class="file-info-entry">
			{{.LexerName}}
		</div>
	{{end}}
	{{if .IsExecutable}}
		<div class="file-info-entry">
			{{.locale.Tr "repo.executable_file"}}
		</div>
	{{end}}
</div>