i want ot add this template in Serial Numbering and amount in word remaining should be same .
please help
i have this Theme
{% if field.label == ‘Due date’ %}{% assign duedate = field.text %}{% endif %} {{ field.label }}
{{ field.text }}
{% endfor %}
|
{{ business.name }}
{{ business.address | newline_to_br }}
{{ business.identifier }}
|
<div style="font-size: 14px; font-weight: bold; margin-bottom: 20px">{{ description }}</div>
</td>
</tr>
<tr> {% assign i = i | plus: 1 %}
{% for column in table.columns %}
<td style="font-weight: bold; border-top-width:1px; border-left-width: 1px; padding: 1px 2px; color: #000; border-color: #2f4f4f; border-right-width: 1px; border-bottom-width: 1px; text-align: {{ column.align }}; background-color: #d2b48c{% if column.nowrap %}; white-space: nowrap; width: 10px{% endif %}">{{ column.label }}</td>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in table.rows %}
<tr>{% assign i = i | plus: 1 %}
{% for cell in row.cells %}
<td style="padding: 1px 2px; background-color: #FFFFFF; border-left-width: 1px; border-color: #2f4f4f; border-right-width: 1px; border-bottom-width: 1px; text-align: {{ table.columns[forloop.index0].align }}{% if table.columns[forloop.index0].nowrap %}; white-space: nowrap; width: 10px{% endif %}">{{ cell.text | newline_to_br }}</td>
{% endfor %}
</tr>
{% endfor %}
<tr><td colspan="{{ table.columns | size }}" style="border-color: #2f4f4f; border-left-width: 1px; border-right-width: 1px; border-bottom-width: 1px; background-color: #d2b48c"> </td></tr>
{% 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; font-size: 18px{% endif %}">{{ total.label }}</td>
<td style="border-color: #000; 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>
{% endfor %}
{% for field in custom_fields %}
<tr>
<td colspan="99">
<div style="font-weight: bold; padding-top: 20px">{{ field.label }}</div>
<div>{{ field.text | newline_to_br }}</div>
</td>
</tr>
{% endfor %}
{% if emphasis.text != null and emphasis.positive %}
<tr><td colspan="99"><div style="text-align: center; margin-top: 40px"><span style="color: #006400; border-width: 5px; border-color: #006400; padding: 10px; font-size: 20px">{{ emphasis.text | upcase }}</span></div></td></tr>
{% endif %}
{% if emphasis.text != null and emphasis.negative %}
<tr><td colspan="99"><div style="text-align: center; margin-top: 40px"><span style="color: #FF0000; border-width: 5px; border-color: #FF0000; padding: 10px; font-size: 20px">{{ emphasis.text | upcase }}</span></div></td></tr>
{% endif %}
</tbody>