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
964 B
19 lines
964 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="{% url 'news:blog' %}">Новости</a></li>
|
|
<li><a href="{% url 'cart:discounts' %}">Акции</a></li>
|
|
<li><a href="{% url 'django.contrib.flatpages.views.flatpage' url='about-us/' %}">О компании</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>
|
|
|