Fix su celle vuote html
This commit is contained in:
parent
4f35cc959b
commit
5ec47fba06
1 changed files with 3 additions and 3 deletions
|
@ -86,14 +86,14 @@
|
||||||
<tr>
|
<tr>
|
||||||
{{range $cella := $riga}}
|
{{range $cella := $riga}}
|
||||||
<td {{ if not $cella }}
|
<td {{ if not $cella }}
|
||||||
class="vuoto"
|
class="vuoto"> </td>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ if $cella.IsFood }}
|
{{ if $cella.IsFood }}
|
||||||
class="cibo"
|
class="cibo"
|
||||||
{{ else }}
|
{{ else }}
|
||||||
class="razza1"
|
class="razza1"
|
||||||
{{ end }}
|
{{ end }}>{{ $cella.Health }}</td>
|
||||||
{{ end }}>{{ $cella.Health }}</td>
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</tr>
|
</tr>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Reference in a new issue