mirror of
https://github.com/ZSCNetSupportDept/scheduler.git
synced 2025-10-28 20:45:05 +08:00
10 lines
203 B
HTML
10 lines
203 B
HTML
<table>
|
|
{{range .}} <!-- 遍历外层切片 -->
|
|
<tr>
|
|
{{range .}} <!-- 遍历内层切片 -->
|
|
<td>{{.}}</td>
|
|
{{end}}
|
|
</tr>
|
|
{{end}}
|
|
</table>
|