blue-carpenter-85560
06/08/2023, 2:03 PM...
<table>
{% for shipmentGroup in mail.shipmentGroups %}
<tr><td> shipment details... </td></tr>
{% for item in shipmentGroup.items %}
<tr><td> item details... </td></td>
{% endfor %}
{% endfor %}
</table>
when viewed in the b2b-demoshop cms block editor, it has changed into
{% for shipmentGroup in mail.shipmentGroups %}{% for item in shipmentGroup.items %}{% endfor %}{% endfor %}
...
<table>
<tr><td> shipment details... </td></tr>
<tr><td> item details... </td></td>
</table>
At the moment, I'm importing the csv with my edits to get around this. Should it be possible to edit the blocks with twig code in the backoffice editor?