{% extends "base.html" %} {% block title %}Wyniki wyszukiwania{% if query %} - {{ query }}{% endif %} - Norda Biznes Partner{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Wyniki wyszukiwania

{% if query %}

Znaleziono {{ companies|length }} firm {%- if people or user_results %} i {{ (people|length) + (user_results|length) }} osób{% endif %} dla zapytania: "{{ query }}"

{% else %}

Znaleziono {{ companies|length }} firm

{% endif %}
{% if people %}

Osoby ({{ people|length }})

{% for person in people %}
{{ person.imiona[0] }}{{ person.nazwisko[0] }}
Powiazany z {{ person.company_count }} firmami
{% endfor %}
{% endif %} {% if user_results %}

Użytkownicy portalu ({{ user_results|length }})

{% for user in user_results %}
{% if user.avatar_path %} {% else %} {{ (user.name or user.email)[0].upper() }} {% endif %}
{% if user.company %}{{ user.company.name }}{% else %}Członek portalu{% endif %}
{% endfor %}
{% endif %} {% if companies %}
{% for company in companies %}
{% if company.category %} {{ company.category.name }} {% endif %} {{ company.name }}
{{ company.description_short|truncate(150) if company.description_short else 'Brak opisu' }}
{% if company.website %} {% endif %} {% if company.phone %} {% endif %} {% if company.address_city %}
{{ company.address_city }}
{% endif %}
{% endfor %}
{% endif %} {% if not companies and not people and not user_results %}

Nie znaleziono wyników

{% if query %} Spróbuj użyć innych słów kluczowych lub skorzystaj z AI chatu aby znaleźć odpowiednią firmę lub osobę. {% else %} Nie znaleziono firm ani osób spełniających kryteria wyszukiwania. {% endif %}

Katalog firm Zapytaj AI
{% endif %} {% endblock %} {% block extra_js %} {% if search_query_id %} (function() { var sqId = {{ search_query_id }}; var t0 = Date.now(); document.querySelectorAll('.company-card').forEach(function(card) { card.querySelectorAll('a').forEach(function(link) { link.addEventListener('click', function() { var pos = parseInt(card.dataset.position); var cid = parseInt(card.dataset.companyId); navigator.sendBeacon('/api/analytics/search-click', new Blob([JSON.stringify({ search_query_id: sqId, position: pos, company_id: cid, time_to_click_ms: Date.now() - t0 })], {type: 'application/json'}) ); }); }); }); })(); {% endif %} {% endblock %}