{% load static %} {% load i18n %} {% load template_filters %} {% load thumbnail %} {% block page_body %}
{{ company.name|safe }}
{% with themes=company.theme.all %}
{% for th in themes %} {{ th.name }}{% ifnotequal forloop.counter themes|length %},{% endifnotequal %} {% endfor %}
{% endwith %}
{% if company.tag.all|length > 0 %}
{% with tags=company.tag.all %} {% for tag in tags %} {{ tag.name }}, {% endfor %} {% endwith %}

{% endif %} {% if company.address_inf %} {{ company.address_inf }}
{% endif %}
{% if company.facebook or company.linkedin or company.vk or company.twitter %}
{% trans 'отправить сообщение' %}
{% trans 'Профили в соц.сетях:' %}
    {% if company.facebook %}
  • Facebook
  • {% endif %} {% if company.linkedin %}
  • LinkedIn
  • {% endif %} {% if company.vk %}
  • В контакте
  • {% endif %} {% if company.twitter %}
  • Twitter
  • {% endif %}
{% endif %}
{% if company.foundation or company.staff_number or company.description %}
{% trans 'Дополнительная информация' %}
{% if company.foundation %}
{% trans 'Год основания:' %}
{{ company.foundation }}
{% endif %} {% if company.staff_number %}
{% trans 'Количество сотрудников:' %}
{{ company.staff_number }}
{% endif %} {% if company.description %}
{% trans 'О компании:' %}
{{ company.description|safe|linebreaks }}
{% endif %}
{% endif %}
{% if company.get_expositions_number > 0 or company.get_conferences_number > 0 or company.get_seminars_number > 0 %}
{% trans 'Участие в событиях' %}
{% if company.get_expositions_number > 0 %} {{ company.get_expositions_number }} в {% trans 'выставках' %} {% endif %} {% if company.get_conferences_number > 0 %} {{ company.get_conferences_number }} в {% trans 'конференциях' %} {% endif %} {% if company.get_seminars_number > 0 %} {{ company.get_seminars_number }} в {% trans 'семинарах' %} {% endif %}
{% endif %} {% if company.get_events %} {% trans 'Все события' %} {% endif %}
{% if company.get_expositions_number > 0 or company.get_conferences_number > 0 or company.get_seminars_number > 0 %}
{% endif %} {% if company.users.all|length > 0 %}
{% if company.users.all|length > 5 %} {% trans 'Все сотрудники' %} {% endif %}
{% endif %}
{% endblock %}