{% load text_filters %}
Аватар {{ user.full_name }}
{{ user.full_name }} @{{ user.slug }} {% if user.position or user.company %}
{{ user.position }} {% if user.company %}— {{ user.company }}{% endif %}
{% endif %} {% if user.city or user.country %}
📍{% if user.city %}{{ user.city }}, {% endif %}{{ user.country }}
{% endif %} {% if user.hat %}
{% include "users/widgets/hat.html" with hat=user.hat %}
{% endif %} {% if user.bio %}
{{ user.bio | markdown }}
{% endif %}