26 lines
903 B
HTML
26 lines
903 B
HTML
{% load i18n %}
|
|
{% load static %}
|
|
|
|
<section class="profile" >
|
|
<div class="menu_buttons close">
|
|
{% include "blocks/profile/b_buttons_menu_profile.html" %}
|
|
<div class="handler_menu close">
|
|
<img class="btns_f_curtain close" src="{% static 'img/svg/arrow_f_curtain.svg' %}">
|
|
<div class="text_f_curtain left">Меню</div>
|
|
<img class="btns_f_curtain close" src="{% static 'img/svg/arrow_f_curtain.svg' %}">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="info_profile">
|
|
{% if not page_html %}
|
|
{% include "blocks/profile/b_profile_first_page.html" %}
|
|
{% else %}
|
|
{{ page_html|safe }}
|
|
{# {% include "blocks/profile/b_chats.html" %}#}
|
|
{# {% elif page == 'chat' %}#}
|
|
{# {% include "blocks/profile/b_chats.html" %}#}
|
|
{% endif %}
|
|
</div>
|
|
<div class="clear_both"></div>
|
|
</section>
|