If you want to display the date of the General Meeting, you can do so by using following object:
{{ period.custom.av.datum }}
However, if you checked for postponing the General Meeting (boolean in text template of the General Meeting), it should give that date of the postponed General Meeting.
Using the following code will allow to do so:
{% if period.custom.artikels.uitstel == "true" %}{{ period.custom.av.uitsteldatum }}{% else %}{{ period.custom.av.datum }}{% endif %}
where our boolean of postponing the General Meeting is : period.custom.artikels.uitstel
When true
, it’ll show period.custom.av.uitsteldatum
. Else, it’ll show period.custom.av.datum
.