s3manager-web/templates/bucket.html
2016-12-20 19:35:27 +01:00

26 lines
415 B
HTML

{{ define "content" }}
<table>
<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 }}