Files
tripwithbonus/templates/blocks/b_user_profile.html
2023-11-02 17:45:18 +03:00

27 lines
957 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 left" src="{% static 'img/svg/arrow_f_curtain.svg' %}">
<div class="text_f_curtain left">Меню</div>
<img class="btns_f_curtain close right" src="{% static 'img/svg/arrow_f_curtain.svg' %}">
<div class="clear_both"></div>
</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>