templates/network/profile/sections/profile_section_racedays.html.twig line 1

Open in your IDE?
  1. {% set racingtrack = profile.profiles.racetrackProfile %}
  2. {% if racingtrack %}
  3.   <turbo-frame id="tab_content">
  4.     <section>
  5.       <turbo-frame id="raceday_list"
  6.         src="{{ path('network_profile_raceday_list', { id: profile.id }) }}"></turbo-frame>
  7.     </section>
  8.     <turbo-stream action="replace" target="tab_navigation">
  9.       <template>
  10.         {% include 'network/profile/components/tab_navigation_component.html.twig' with {
  11.           profile: profile,
  12.           highlightedTab: app.request.pathInfo
  13.         } %}
  14.       </template>
  15.     </turbo-stream>
  16.   </turbo-frame>
  17. {% endif %}