{% extends "base.html" %} {% block title %}Nowi członkowie — Norda Biznes Partner{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% if meetings_data %}
{{ total }}
nowych firm przyjętych na {{ meetings_data|length }} posiedzeniach Rady
{% for item in meetings_data %}

Posiedzenie Rady {{ item.meeting.meeting_number }}/{{ item.meeting.year }} — {{ item.meeting.meeting_date.strftime('%d.%m.%Y') }}

{% for company in item.companies %}
{% if company.status == 'active' %} Nowy {% else %} Profil w trakcie uzupełniania {% endif %} {% if company.category %}
{{ company.category.name }}
{% endif %}
{% if company.status == 'active' %} {{ company.name }} {% else %} {{ company.name }} {% endif %}
{% if company.description_short %}
{{ company.description_short[:150] }}{% if company.description_short|length > 150 %}...{% endif %}
{% endif %}
{% if company.address_city %} {{ company.address_city }} {% endif %}
{% endfor %}
{% endfor %} {% else %}

Brak informacji o nowych członkach

{% endif %} {% endblock %}