Lijst van alle bestuurders in 2 kolommen

Ik ben de notulen van de Raad van Bestuur aan het programmeren in een dossier . Nu onderaan het document zou ik graag de naam en de functie van de bestuurders zoals deze staan aangeduid in de Notulen van de vergadering van het bestuursorgaan/de zaakvoerder(s) namelijk zodat telkens twee bestuurders naast elkaar staan.

De namen van de bestuurders krijg ik maar dan wel onder elkaar en ik kom niet aan de automatische invulling van hun functie.

Bestaat er ergens een lijst van alle director. … zoals als je de naam van de bestuurder wilt is het “director.name” en de vertegenwoordiger “director.

Custom.represented_by_name” maar dan ook voor alle andere info?

Hi @Tanguy, welcome back to our Community!

I’m sorry but I’ll have to ask if you could rephrase your question in English. That way, not only we’ll be able to properly analyze the case, but it could be useful for others consulting the Community as well. :slightly_smiling_face:

Here is a link to some Community guidelines. Also, it could be helpful as well to include an extract of your code, where we can see what you currently have and what you are trying to achieve.

I am programming the records of the board of directors. Now at the bottom of de document I would like to have the list of director out of the document Operating parameters. So far no problem, I have the list of directors with the code “director.name” but I would like to have this list in to two columns. I want to have a list in which each times you haven 2 directors standing next to each other.

Another question, I want to know de code to get the function like it stands in the document Operating parameters, just like I have the code “director.name”?

I hope someone can help me?

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

ok thank you