2024-04-22 05:21:06 -06:00
|
|
|
<div class="file-info tw-font-mono">
|
2022-11-19 04:08:06 -07:00
|
|
|
{{if .FileIsSymlink}}
|
|
|
|
<div class="file-info-entry">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.symbolic_link"}}
|
2022-11-19 04:08:06 -07:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-06-12 19:06:46 -06:00
|
|
|
{{if ne .NumLines nil}}
|
2022-11-19 04:08:06 -07:00
|
|
|
<div class="file-info-entry">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{.NumLines}} {{ctx.Locale.TrN .NumLines "repo.line" "repo.lines"}}
|
2022-11-19 04:08:06 -07:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-06-12 19:06:46 -06:00
|
|
|
{{if ne .FileSize nil}}
|
2022-11-19 04:08:06 -07:00
|
|
|
<div class="file-info-entry">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{FileSize .FileSize}}{{if .IsLFSFile}} ({{ctx.Locale.Tr "repo.stored_lfs"}}){{end}}
|
2022-11-19 04:08:06 -07:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if .LFSLock}}
|
2023-03-24 04:35:38 -06:00
|
|
|
<div class="file-info-entry ui" data-tooltip-content="{{.LFSLockHint}}">
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 10:42:49 -06:00
|
|
|
{{svg "octicon-lock" 16 "tw-mr-1"}}
|
2022-11-19 04:08:06 -07:00
|
|
|
<a href="{{.LFSLockOwnerHomeLink}}">{{.LFSLockOwner}}</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if .LexerName}}
|
|
|
|
<div class="file-info-entry">
|
|
|
|
{{.LexerName}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-06-15 23:46:12 -06:00
|
|
|
{{if .IsExecutable}}
|
|
|
|
<div class="file-info-entry">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.executable_file"}}
|
2023-06-15 23:46:12 -06:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-01-23 22:51:37 -07:00
|
|
|
{{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}}
|
2023-07-30 23:04:45 -06:00
|
|
|
{{if .ImageSize}}
|
|
|
|
<div class="file-info-entry">
|
|
|
|
{{.ImageSize}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2022-11-19 04:08:06 -07:00
|
|
|
</div>
|