我有用液体编写的代码。问题是,我想重命名一些列,但我被卡住了。我试过但找不到办法。
例如,我尝试for-loop
用变量替换文本。还尝试更改文本。Sub-Total
要替换为的列名Amount excluding tax
。total
要替换为的列名Amount including Tax
。
{% for total in table.totals %}
<tr>
<td colspan="{{ table.columns | size | minus:1 }}" style="padding: 5px 10px; text-align: right{% if total.emphasis == true %}; font-weight: bold{% endif %}">
{{ total.label }}
</td>
<td style="border-left-width: 1px; white-space: nowrap; border-right-width: 1px; border-bottom-width: 1px; padding: 5px 10px; text-align: right{% if total.emphasis == true %}; font-weight: bold{% endif %}">
{{ total.text }}
</td>
</tr>
{% endfor %}