{% extends 'page.html.twig' %}
{% block content %}
{% include 'network/profile/components/hero.html.twig' %}
<section class="container flex items-center justify-between mt-12">
<h3 class="text-lg font-medium uppercase md:text-xl font-headline">
{{ 'racetrack.list.filter'|trans }}
</h3>
{{ form_start(filter, { attr: { 'data-controller': 'autosubmit' } }) }}
<div class="my-4 w-fit">
{{ form_row(filter.country) }}
</div>
{{ form_end(filter) }}
</section>
{% include 'network/profile/components/listing.html.twig' with { listing: racetracks } %}
<div class="grid my-12 mb-20 place-items-center">
{% include 'component/pagination.html.twig' with { pagination: racetracks } %}
</div>
{% endblock %}