{% set viewModel = fact_sheet.view_model %}
{% if(viewModel.address) %}
<div>
<strong class="typo">{{ t('Adresse') }}</strong> | {{ viewModel.address }}, {{ viewModel.zip }} {{ viewModel.city }}
</div>
<hr>
{% endif %}
{% if viewModel.capacity is not empty and viewModel.capacity != 0 %}
<div>
<strong class="typo">{{ t('Kapazität') }}</strong> | {{ viewModel.capacity }}
</div>
<hr>
{% endif %}
{% if(viewModel.description) %}
<div>
<strong class="typo">{{ t('Beschreibung') }}</strong> | {{ viewModel.description }}
</div>
<hr>
{% endif %}
{% if(viewModel.other_names) %}
<div>
<strong class="typo">{{ t('Andere Namen') }}</strong> | {{ viewModel.other_names }}
</div>
<hr>
{% endif %}
/* No context defined. */
{% include '@organisms/fact_sheet/fact_sheet.twig' with {
} only %}Fields