blob: 04add218ae72705052136c502cb757811e829f4d (
plain) (
tree)
|
|
<table>
<tr>
{{ range $col := .Columns }}
<th>{{ $col }}</th>
{{ end }}
<th></th>
</tr>
{{ range $row := .Rows }}
<tr>
{{ range $col := $row }}
<td>{{ if $col.Valid }}{{ $col.String }}{{ end }}</td>
{{ end }}
<td>
<button name="update" value="{{ (index $row 0).String }}">update</button>
<button name="delete" value="{{ (index $row 0).String }}">delete</button>
</td>
</tr>
{{ end }}
</table>
|