You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
907 B

{% load static %}
<div class="mobail-menu" style="display: none">
<div class="container">
<ul class="mobail-menu__list">
<li><a href="{% url 'products:product_list' %}">Каталог</a></li>
<li><a href="/flatpages_ext">Новости</a></li>
<li><a href="/flatpages_ext/cashback">Акции</a></li>
<li><a href="/flatpages_ext/about">О компании</a></li>
{% if not user.is_authenticated %}
<li><a href="{% url 'accounts_ext:register' %}">Регистрация</a></li>
<li><a href="{% url 'accounts_ext:login' %}">Войти</a></li>
{% else %}
<li><a href="{% url "cabinet:index" %}">Личный кабинет</a></li>
<li><a href="{% url "accounts_ext:logout" %}">Выйти</a></li>
{% endif %}
</ul>
</div>
</div>