summaryrefslogtreecommitdiffstats
path: root/templates/repo/file_info.tmpl
blob: 6ae7c15a2666092b431ca6a26b8149ff407d002e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="file-info tw-font-mono">
	{{if .FileIsSymlink}}
		<div class="file-info-entry">
			{{ctx.Locale.Tr "repo.symbolic_link"}}
		</div>
	{{end}}
	{{if .NumLinesSet}}{{/* Explicit attribute needed to show 0 line changes */}}
		<div class="file-info-entry">
			{{.NumLines}} {{ctx.Locale.TrN .NumLines "repo.line" "repo.lines"}}
		</div>
	{{end}}
	{{if .HasNoTrailingEOL}}
		<div class="file-info-entry" data-tooltip-content="{{ctx.Locale.Tr "repo.no_eol.tooltip"}}">
			{{ctx.Locale.Tr "repo.no_eol.text"}}
		</div>
	{{end}}
	{{if .FileSize}}
		<div class="file-info-entry">
			{{ctx.Locale.TrSize .FileSize}}{{if .IsLFSFile}} ({{ctx.Locale.Tr "repo.stored_lfs"}}){{end}}
		</div>
	{{end}}
	{{if .LFSLock}}
		<div class="file-info-entry ui" data-tooltip-content="{{.LFSLockHint}}">
			{{svg "octicon-lock" 16 "tw-mr-1"}}
			<a href="{{.LFSLockOwnerHomeLink}}">{{.LFSLockOwner}}</a>
		</div>
	{{end}}
	{{if .LexerName}}
		<div class="file-info-entry">
			{{.LexerName}}
		</div>
	{{end}}
	{{if .IsExecutable}}
		<div class="file-info-entry">
			{{ctx.Locale.Tr "repo.executable_file"}}
		</div>
	{{end}}
	{{if .IsVendored}}
		<div class="file-info-entry">
			{{ctx.Locale.Tr "repo.vendored"}}
		</div>
	{{end}}
	{{if .IsGenerated}}
		<div class="file-info-entry">
			{{ctx.Locale.Tr "repo.generated"}}
		</div>
	{{end}}
	{{if .ImageSize}}
		<div class="file-info-entry">
			{{.ImageSize}}
		</div>
	{{end}}
</div>