Lijst van alle bestuurders in 2 kolommen

Hi @Tanguy,

I’m guessing this piece of code is already some guidance towards the lay-out you are looking for?

{% stripnewlines %}
|—|—+ {% newline %}
{% for director in period.directors %}
|{{ director.name }}
<br>
{{ person.custom.function }}
{% assign count = count+1 %}
{% assign modulo = count | modulo:2 %}
{% if modulo == 0 %}{% newline %}{% endif %}
{% endfor %}
{% endstripnewlines %}

For you second question, you can access the {{ person.custom.function }}. This will return a numerical value which is based on the array in the template Bedrijfsparameters.

{% t= “Voorzitter van de Raad van Bestuur|Ondervoorzitter van de Raad van Bestuur|Bestuurder|Gedelegeerd bestuurder|Bestuurder-zaakvoerder|Zaakvoerder|Vennoot|Voorzitter van de Raad van Commissarissen|Commissaris|Regeringscommissaris|Externe accountant|Bedrijfsrevisor|Vereffenaar|Curator|Erkende boekhouder|Erkende boekhouder-fiscalist” fr:“Président du Conseil d’Administration|Vice-président du Conseil d’Administration|Administrateur|Administrateur délégué|Administrateur gérant|Gérant|Associé|Président du Collège des Commissaires|Commissaire|Commissaire du Gouvernement|Expert-comptable externe|Réviseur d’entreprises|Liquidateur|Curateur|Comptable agréé|Comptable-fiscaliste agréé” en:“Chairman of the Board of Directors|Vice-Chairman of the Board of Directors|Director|Managing Director|Director-Manager|Manager|Partner|Chairman of the Supervisory Board|Statutory Auditor|Government Auditor|External Auditor|Company Auditor|Liquidator|Curator|Accredited Accounting|Recognized accountant-tax specialist” %}
{% capture function_types %}{% t “Voorzitter van de Raad van Bestuur|Ondervoorzitter van de Raad van Bestuur|Bestuurder|Gedelegeerd bestuurder|Bestuurder-zaakvoerder|Zaakvoerder|Vennoot|Voorzitter van de Raad van Commissarissen|Commissaris|Regeringscommissaris|Externe accountant|Bedrijfsrevisor|Vereffenaar|Curator|Erkende boekhouder|Erkende boekhouder-fiscalist” %}

More information can be found here: CASE: overview legal data from Silverfin templates

Enjoy your weekend!

Kind regards,
Robin