This commit is contained in:
2024-07-23 13:09:26 +02:00
commit 58f37a4602
486 changed files with 52128 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{{if .dependencies}}
<p><strong>{{.title}}</strong></p>
<table class="ui single line very basic table">
<thead>
<tr>
<th class="eleven wide">{{ctx.Locale.Tr "packages.dependency.id"}}</th>
<th class="five wide">{{ctx.Locale.Tr "packages.dependency.version"}}</th>
</tr>
</thead>
<tbody>
{{range .dependencies}}
<tr>
<td>{{.Name}}</td>
<td>{{range $i, $v := .Version}}{{if gt $i 0}}, {{end}}{{$v.Restriction}}{{$v.Version}}{{end}}</td>
</tr>
{{end}}
</tbody>
</table>
{{end}}