0.4.6 dont show slider on sections page

This commit is contained in:
SDE
2023-12-10 23:40:52 +03:00
parent 655ac4e398
commit 7709bd6ef1
2 changed files with 10 additions and 1 deletions

View File

@@ -55,12 +55,18 @@ def get_content_for_section_ajax(request):
# }
# els_footer_list = [one_list_el]
#
show_slider = True
if '/section/' in request.META.get('HTTP_REFERER'):
show_slider = False
Dict = {
'page': section,
'show_slider': show_slider,
# 'sections': get_sections(),
# 'services': services,
}
from .funcs import get_section_views_Dict
Dict.update(get_section_views_Dict(section))

View File

@@ -1,4 +1,7 @@
{% include 'blocks/b_slider.html' %}
{% if show_slider %}
{% include 'blocks/b_slider.html' %}
{% endif %}
{% include 'blocks/dynamic/b_sections_buttons.html' %}