2
0

feat(ui): display license type in repository list
Some checks failed
Build and Release / Create Release (push) Has been cancelled
Build and Release / Lint (push) Has been cancelled
Build and Release / Unit Tests (push) Has been cancelled
Build and Release / Integration Tests (PostgreSQL) (push) Has been cancelled
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Has been cancelled
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Has been cancelled
Build and Release / Build Binaries (amd64, darwin, macos) (push) Has been cancelled
Build and Release / Build Binaries (arm64, darwin, macos) (push) Has been cancelled
Build and Release / Build Binary (linux/arm64) (push) Has been cancelled

This commit is contained in:
2026-01-22 12:26:06 -05:00
parent 8f35318aea
commit ab4b9d245e

View File

@@ -51,6 +51,12 @@
<span class="tw-contents" aria-label="{{ctx.Locale.Tr "repo.forks"}}">{{svg "octicon-git-branch" 16}}</span>
<span {{if ge .NumForks 1000}}data-tooltip-content="{{.NumForks}}"{{end}}>{{CountFmt .NumForks}}</span>
</a>
{{if and $.PageIsViewRepositories .LicenseType}}
<span class="flex-text-inline" title="{{ctx.Locale.Tr "repo.license"}}">
{{svg "octicon-law" 16}}
{{.LicenseType}}
</span>
{{end}}
</div>
</div>
{{$description := .DescriptionHTML ctx}}