Hello @Birgit,
Can you post the exact code that you changed? It’s only the signatures that are now not working anymore?
Seems to me, at first sight, you erased all your pipes | between the names and such. And those pipes have the function to order columns.
also, you can’t break the table. There can’t be any single empty line in your table.
If it’s not clear, let’s take a look at the code of our standard report :
{% stripnewlines %}
{% newline %}
|{% for i in (1..aantal_kolommen) %}----{{ 100/aantal_kolommen | integer }}%------|{% endfor %}+
{% newline %}
|
{% newline %}
|
{% newline %}
|
{% newline %}
|
{% newline %}
| {% for zaakvoerder in period.directors.active_as_director %}
{{ zaakvoerder.name }}
{% if zaakvoerder.custom.represented_by_name != blank %}
<br>{{ zaakvoerder.custom.represented_by_name }}
{% endif %}
{% if zaakvoerder.custom.represented_by_vat != blank %}
<br>{{ zaakvoerder.custom.represented_by_vat }}
{% endif %}
<br>
{% if director_type == 'bestuurders' %}
{% if zaakvoerder.statutory == true %}
Gedelegeerd bestuurder
{% else %}
Bestuurder
{% endif %}
{% else %}
{% if zaakvoerder.statutory == true %}
Statutair zaakvoerder
{% else %}
Zaakvoerder
{% endif %}
{% endif %} |{% assign modulo = forloop.index | modulo:4 %}{% if modulo == 0 %}{% unless forloop.last %}
{% newline %}
|
{% newline %}
|
{% newline %}
|
{% newline %}
|
{% newline %}
|{% endunless %}{% endif %}{% endfor %}
{% newline %}
|
{% newline %}
|
{% endstripnewlines %}
Of course, I’ve updated with {% stripnewlines %}
and {% newline %)
to display it more clear for you (see also this for more info.
Be sure to check out the slides of workshop I as well; there’s more info in there as well for ‘table structure’ (see here )