Files
scheduler/templates/table.html

10 lines
212 B
HTML

<table border=1>
{{range .}} <!-- 遍历外层切片 -->
<tr>
{{range .}} <!-- 遍历内层切片 -->
<td>{{.}}</td>
{{end}}
</tr>
{{end}}
</table>