# CASE: use date General Meeting or the postponed General Meeting

**URL:** https://community.silverfin.com/t/case-use-date-general-meeting-or-the-postponed-general-meeting/955
**Category:** Cases
**Tags:** drops, drop\_period
**Created:** [June 4, 2018, 7:44am UTC](https://community.silverfin.com/t/case-use-date-general-meeting-or-the-postponed-general-meeting/955 "2018-06-04T07:44:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sven](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/sven/32/1495_2.png) [@sven](https://community.silverfin.com/u/sven)
#### Post date: [June 4, 2018, 7:44am UTC](https://community.silverfin.com/t/case-use-date-general-meeting-or-the-postponed-general-meeting/955/1 "2018-06-04T07:44:56Z")

</div>

If you want to display the date of the General Meeting, you can do so by using following object:

```auto
{{ 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:

```auto
{% 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`.
