2016-12-18 22:54:21 +01:00
|
|
|
{{ define "content" }}
|
2016-12-20 19:35:27 +01:00
|
|
|
<table>
|
2016-12-18 22:54:21 +01:00
|
|
|
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Key</th>
|
|
|
|
<th>Size</th>
|
|
|
|
<th>Owner</th>
|
|
|
|
<th>Last Modified</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
{{ range $object := . }}
|
|
|
|
<tr>
|
|
|
|
<td>{{ $object.Key }}</td>
|
|
|
|
<td>{{ $object.Size }} bytes</td>
|
|
|
|
<td>{{ $object.Owner }}</td>
|
|
|
|
<td>{{ $object.LastModified }}</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
{{ end }}
|