mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
20 lines
456 B
Handlebars
20 lines
456 B
Handlebars
|
{{if .dependencies}}
|
||
|
<p><strong>{{.title}}</strong></p>
|
||
|
<table class="ui single line very basic table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th class="eleven wide">{{.root.i18n.Tr "packages.dependency.id"}}</th>
|
||
|
<th class="five wide">{{.root.i18n.Tr "packages.dependency.version"}}</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{range $dependency, $version := .dependencies}}
|
||
|
<tr>
|
||
|
<td>{{$dependency}}</td>
|
||
|
<td>{{$version}}</td>
|
||
|
</tr>
|
||
|
{{end}}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
{{end}}
|