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.
40 lines
1.5 KiB
40 lines
1.5 KiB
{% extends 'base.html' %}
|
|
{% load static %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
<div class="col-4 left-menu">
|
|
<div class="">
|
|
{% if product_search_form %}
|
|
<div class="left-menu__search">
|
|
{% crispy product_search_form %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% block extra_left_menu_items %}{% endblock extra_left_menu_items %}
|
|
{% if product_root_categories %}
|
|
<div class="left-menu__category">
|
|
{% for category in product_root_categories %}
|
|
<a class="left-menu__category-item"
|
|
href="{% url "products:category" slug=category.slug %}">
|
|
<span class="category-item__image">
|
|
<img src="{% static category.img %}" alt="{{ category.alt }}">
|
|
</span>
|
|
<span class="category-item__name">{{ category.name }}</span>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% if contact_us_form %}
|
|
<div class="left-menu__contact">
|
|
{% crispy contact_us_form %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-8 col-md-12">
|
|
{% block right_common_content %}
|
|
{% endblock right_common_content %}
|
|
</div>
|
|
{% endblock content %}
|
|
|