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

Open in your IDE?
  1. <turbo-frame id="tab_content">
  2.   {% include 'network/profile/sections/horses/profile_section_horses_events.html.twig' with {
  3.     profile: profile,
  4.     user: user,
  5.     auctionEvents: auctionEvents,
  6.     racedayEvents: racedayEvents
  7.   } only %}
  8.   {% include 'network/profile/sections/horses/profile_section_horses_horselist.html.twig' with {
  9.     profile: profile,
  10.     user: user,
  11.     managedHorses: managedHorses,
  12.     bredHorses: bredHorses,
  13.     ownedHorses: ownedHorses,
  14.     trainedHorses: trainedHorses
  15.   } only %}
  16.   <turbo-stream action="replace" target="tab_navigation">
  17.     <template>
  18.       {% include 'network/profile/components/tab_navigation_component.html.twig' with {
  19.         profile: profile,
  20.         highlightedTab: app.request.pathInfo
  21.       } %}
  22.     </template>
  23.   </turbo-stream>
  24. </turbo-frame>