11 lines
353 B
Smarty
11 lines
353 B
Smarty
{{define "amount"}}
|
|
<span class="right {{if .IsZero}}zero{{else if not .IsPositive}}negative{{end}}">
|
|
{{printf "%.2f" .GetFloat64}}
|
|
</span>
|
|
{{end}}
|
|
|
|
{{define "amount-cell"}}
|
|
<td class="right {{if .IsZero}}zero{{else if not .IsPositive}}negative{{end}}">
|
|
{{printf "%.2f" .GetFloat64}}
|
|
</td>
|
|
{{end}} |