File tree 2 files changed +4
-2
lines changed
templates/package/content
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3538,6 +3538,7 @@ versions = Versions
3538
3538
versions.view_all = View all
3539
3539
dependency.id = ID
3540
3540
dependency.version = Version
3541
+ search_in_external_registry = Search in %s
3541
3542
alpine.registry = Setup this registry by adding the url in your <code>/etc/apk/repositories</code> file:
3542
3543
alpine.registry.key = Download the registry public RSA key into the <code>/etc/apk/keys/</code> folder to verify the index signature:
3543
3544
alpine.registry.info = Choose $branch and $repository from the list below.
Original file line number Diff line number Diff line change 35
35
</tr>
36
36
</thead>
37
37
<tbody>
38
+ {{$tooltipSearchInNuget := ctx.Locale.Tr "packages.search_in_external_registry" "nuget.org"}}
38
39
{{range $framework, $dependencies := .PackageDescriptor.Metadata.Dependencies}}
39
40
{{range $dependencies}}
40
41
<tr>
41
- <td>{{.ID}}</td>
42
- <td>{{.Version}}</td>
42
+ <td>{{.ID}} <a target="_blank" rel="noreferrer" href="https://www.nuget.org/packages/{{.ID}}" data-tooltip-content="{{$tooltipSearchInNuget}}">{{svg "octicon-link-external"}}</a> </td>
43
+ <td>{{.Version}} <a target="_blank" rel="noreferrer" href="https://www.nuget.org/packages/{{.ID}}/{{.Version}}" data-tooltip-content="{{$tooltipSearchInNuget}}">{{svg "octicon-link-external"}}</a> </td>
43
44
<td>{{$framework}}</td>
44
45
</tr>
45
46
{{end}}
You can’t perform that action at this time.
0 commit comments