{% set viewModel = fact_sheet.view_model %}
{% if(viewModel.city) %}
<div>
<strong class="typo">{{ t('Hometown') }}</strong> | {{ viewModel.city }}{{ viewModel.country ? ', ' ~ viewModel.country : '' }}
</div>
<hr>
{% endif %}
{% if(viewModel.follower) %}
<div>
<strong class="typo">{{ t('Follower') }}</strong> | {{ viewModel.follower }}
</div>
<hr>
{% endif %}
{% if(viewModel.stadium) %}
<div>
<strong class="typo">{{ t('Stadion') }}</strong> | {{ viewModel.stadium.name }}, {{ viewModel.stadium.city }}
</div>
<hr>
{% endif %}
/* No context defined. */
{% include '@organisms/fact_sheet/fact_sheet.twig' with {
} only %}Fields