{% extends "base.html" %} {% block content %}

Профиль

{% if current_user.about %}

О себе:

{{current_user.about}}
{% endif %}

{{current_user.name}}

{% if message != '' %} {% endif %}

Опубликованные посты

{% if pub_post != [] %} {% for item in pub_post %}
{% if item.name != None %}

{{item.name}}

{% endif %}
{% if item.text != None %} {{item.text}} {% endif %}
{% if emotion_pub[loop.index0]['pos_emot'] != None %}
Позитивные эмоции {% for item2 in emotion_pub[loop.index0]['pos_emot'] %} {% endfor %}
{% endif %} {% if emotion_pub[loop.index0]['nig_emot'] != None %}
Негативные эмоции

{% for item2 in emotion_pub[loop.index0]['nig_emot'] %} {% endfor %}
{% endif %} {% if item.photo != None %}
{% endif %} {% if emotion_pub[loop.index0]['link'] != None %}
Ссылки {% for item2 in emotion_pub[loop.index0]['link'] %} {% endfor %}
{% endif %}
{{ current_user.name }}
{{item.date}}
{% endfor %} {% else %}

Ничего не нашлось :с

{% endif %}
{% endblock %}