{% extends "base.html" %} {% block title %}{{ person.full_name() }} - Norda Biznes Partner{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Wstecz
{% if portal_user and portal_user.avatar_path %} {{ person.full_name() }} {% else %} {{ person.imiona[0] }}{{ person.nazwisko[0] }} {% endif %}

{{ person.full_name() }} {% if is_rada_member %} Rada Izby {% endif %}

{% set unique_company_ids = company_roles|map(attribute='company_id')|list|unique|list %}

Powiązany z {{ unique_company_ids|length }} firmami ({{ company_roles|length }} ról) w Norda Biznes {% if last_active_label %} {{ last_active_label }} {% endif %}

{% if portal_user %}

Dane kontaktowe (z konta na portalu)

{% if portal_user.email and portal_user.privacy_show_email != False %} {% endif %} {% if portal_user.phone and portal_user.privacy_show_phone != False %} {% endif %} {% if portal_user.company %}
{{ portal_user.company.name if portal_user.company else '-' }}
{% endif %}
{% if portal_user.id != current_user.id %}
Wyślij wiadomość prywatną na portalu {% if portal_user.phone and portal_user.privacy_show_phone != False %} Zadzwoń {% endif %} {% if portal_user.email and portal_user.privacy_show_email != False %} Wyślij e-mail {% endif %} {% if portal_user.company %} Profil firmy {% endif %}
{% endif %}
{% else %}

Dane kontaktowe

Ta osoba nie ma jeszcze konta na portalu Norda Biznes Partner. Dane kontaktowe pojawia sie po rejestracji.
{% endif %} {% if portal_user and (attended_events or forum_topics_count > 0 or forum_replies_count > 0) %}

Aktywność na portalu

{% if forum_topics_count > 0 %}
{{ forum_topics_count }}
{{ 'temat' if forum_topics_count == 1 else 'tematów' }} na forum
{% endif %} {% if forum_replies_count > 0 %}
{{ forum_replies_count }}
{{ 'odpowiedź' if forum_replies_count == 1 else 'odpowiedzi' }}
{% endif %} {% if attended_events %}
{{ attended_events|length }}
{{ 'wydarzenie' if attended_events|length == 1 else 'wydarzeń' }}
{% endif %}
{% if attended_events %}
Ostatnie wydarzenia:
{% for event in attended_events %} {{ event.title }} {{ event.event_date.strftime('%d.%m.%Y') }} {% endfor %}
{% endif %}
{% endif %}

Powiazania z firmami

{% set unique_companies = {} %} {% for role in company_roles %} {% if role.company.id not in unique_companies %} {% set _ = unique_companies.update({role.company.id: {'company': role.company, 'roles': []}}) %} {% endif %} {% set _ = unique_companies[role.company.id]['roles'].append(role) %} {% endfor %} {% for company_id, data in unique_companies.items() %} {% endfor %}
Dane urzedowe pochodza z: ekrs.ms.gov.pl (KRS), dane.biznes.gov.pl (CEIDG)
{% endblock %}