aboutsummaryrefslogtreecommitdiffstats
path: root/templates/bingo.html
blob: e00543c22be9184eaaeb264b01bd0ab3a7b81ce2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "title" }}Bingo{{ end }}
{{ define "content" }}
<table>
    <tbody>
    {{ range .Rows }}
    <tr>
        {{ range . }}
        <td class="{{ if .Checked }}checked{{ end }} {{ if not .Checkable }}locked{{ end }}">{{ .Text }}</td>
        {{ end }}
    </tr>
    {{ else }}
    <td>No Rows!</td>
    {{ end }}
    </tbody>
</table>
{{ end }}