summaryrefslogtreecommitdiffstats
path: root/templates/package/content/composer_dependencies.tmpl
blob: b55c1b5b88a59ac6b3e9ac40f1dcb99077b564d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{if .dependencies}}
<p><strong>{{.title}}</strong></p>
<table class="ui single line very basic table">
	<thead>
		<tr>
			<th class="eleven wide">{{.root.locale.Tr "packages.dependency.id"}}</th>
			<th class="five wide">{{.root.locale.Tr "packages.dependency.version"}}</th>
		</tr>
	</thead>
	<tbody>
		{{range $dependency, $version := .dependencies}}
		<tr>
			<td>{{$dependency}}</td>
			<td>{{$version}}</td>
		</tr>
		{{end}}
	</tbody>
</table>
{{end}}