Document template not correctly exported

Hello,

I created a new document template. Everything sounds correct when I look at it on the screen but when I export it I receive a different information in the export than selected on the screen.

You will find here the code:

<br>_Samenstelling van de algemene vergadering:_ zie aanwezigheidslijst

<br>**_Voorafgaandelijke uiteenzetting:_**
{% ic %}{% input period.custom.notulen_voorzitter.dropdown as:select options:"ENKEL VOORZITTER|MET SECRETARIS" | default:"ENKEL VOORZITTER" | assign:typeofmeeting %}{% endic %}
<br>I.  {% if typeofmeeting != "ENKEL VOORZITTER"%}De vergadering wordt geopend om {{ voorbereiding_av_uur }}:{{ voorbereiding_av_minuten }} uur onder het voorzitterschap van {% input period.custom.voorzitter.naam as:select options:zaakvoerder_options assign:voorzitter %} die {% input period.custom.secretaris.naam as:select options:zaakvoerder_options assign:secretaris %} aanduidt als secretaris.{% else %}De vergadering wordt geopend om {{ voorbereiding_av_uur }}:{{ voorbereiding_av_minuten }} door {% input period.custom.voorzitter.naam as:select options:zaakvoerder_options assign:voorzitter %}. Gezien het aantal aanwezigen wordt er geen bureau samengesteld. {% endif %}

Any idea what’s happening?

Michael

Hi @Dutrannoit

welcome to our Community!
The issue is this piece of code:

{% ic %}{% input period.custom.notulen_voorzitter.dropdown as:select options:"ENKEL VOORZITTER|MET SECRETARIS" | default:"ENKEL VOORZITTER" | assign:typeofmeeting %}{% endic %}

The ic-tags make it so that line is not executed in export.
Your local variable typeofmeeting therefore does not exist when you export the template.

You can solve this with a new assign statement outside of the ic-tags.
That could look like this:

{% ic %}{% input period.custom.notulen_voorzitter.dropdown as:select options:"ENKEL VOORZITTER|MET SECRETARIS" | default:"ENKEL VOORZITTER" %}{% endic %}
{% assign typeofmeeting = period.custom.notulen_voorzitter.dropdown | default:"ENKEL VOORZITTER" %}

I hope that helps.
Kind regards,
Romy

Hi Romi,

It helps. Thank you!

Michael