{% load static %} {% load i18n %} {% load template_filters %} {% block page_body %}
{{ company.name|safe }}
{{ company.description|safe }}

{% if company.address %} {% with address=company.address %} {% include 'includes/address_block.html' %} {% endwith %}
{% endif %}
{% with obj=company filter=filter %} {% include 'includes/show_tags.html' %} {% endwith %}

    {% if company.facebook %}
  • Facebook
  • {% endif %} {% if company.linkedin %}
  • LinkedIn
  • {% endif %} {% if company.vk %}
  • В контакте
  • {% endif %} {% if company.twitter %}
  • Twitter
  • {% endif %}

{% trans 'Дополнительная информация' %}
{% if company.foundation %}
{% trans 'Год основания:' %}
{{ company.foundation }}
{% endif %} {% if company.staff_number %}
{% trans 'Количество сотрудников:' %}
{{ company.staff_number }}
{% endif %} {% if company.description %}
{% trans 'О компании:' %}
{{ company.description|safe }}
{% endif %}

{% trans 'Участие в событиях' %}
{% if company.get_events %} {% trans 'Все события' %} {% endif %}

{% if company.users.all|length > 5 %} {% trans 'Все сотрудники' %} {% endif %}
{% endblock %}