blob: 15d8051aa8a78338c9c1ef32f0cb8c23843fbb8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<ste:load name="master.html" />
<ste:block name="content">
<ste:default_error />
<ste:default_success />
<h2>Latest Packages</h2>
<table class="listtab fullwidth">
<thead>
<tr>
<th>Package Name</th>
<th>Version</th>
<th>Description</th>
<th>Last update</th>
</tr>
</thead>
<tbody>
<ste:if>
<ste:set var="pkgs_n"><ste:arraylen array="latest_pkgs" /></ste:set>
~{$pkgs_n|gt|0}
<ste:then>
<ste:foreach array="latest_pkgs" value="pkg">
<tr>
<td><ste:escape>$pkg[name]</ste:escape></td>
<td><ste:escape>$pkg[version]</ste:escape></td>
<td><ste:escape>$pkg[description]</ste:escape></td>
<td><ste:date format="%d. %h. %Y, %H:%M:%S">$pkg[last_update]</ste:date></td>
</tr>
</ste:foreach>
</ste:then>
<ste:else>
<tr>
<td style="text-align: center; font-style: italic;" colspan="4">No Packages available.</td>
</tr>
</ste:else>
</ste:if>
</tbody>
</table>
</ste:block>
|