{% set racingtrack = profile.profiles.racetrackProfile %}
{% if racingtrack %}
<turbo-frame id="tab_content">
<section>
<turbo-frame id="raceday_list"
src="{{ path('network_profile_raceday_list', { id: profile.id }) }}"></turbo-frame>
</section>
<turbo-stream action="replace" target="tab_navigation">
<template>
{% include 'network/profile/components/tab_navigation_component.html.twig' with {
profile: profile,
highlightedTab: app.request.pathInfo
} %}
</template>
</turbo-stream>
</turbo-frame>
{% endif %}