mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
e5422db5c7
Backport #25287 by @JakobDev This simply shows if a File has the executable Permission ![grafik](https://github.com/go-gitea/gitea/assets/15185051/1d50c105-6d55-4ecc-808a-c9cd5559d238) Co-authored-by: JakobDev <jakobdev@gmx.de> Co-authored-by: silverwind <me@silverwind.io>
33 lines
928 B
Handlebars
33 lines
928 B
Handlebars
<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>
|