This commit is contained in:
SBD
2023-11-28 13:28:11 +03:00
parent 852368f4bd
commit 1406c85735
6 changed files with 73 additions and 21 deletions

View File

@@ -0,0 +1 @@
{% load static %}

View File

@@ -1,27 +1,37 @@
{% load static %}
{% load i18n %}
{% load admin_interface_tags %}
<div class="block_footer">
<div class="cut-width">
<div class="footer_els_container">
{% for service in services %}
<div class="footer_el">
<div class="footer_name_str medium_txt">
{{ service.name }}
<div class="flex_container_footer">
<div class="footer_els_container">
{% for service in services %}
<div class="footer_el">
<div class="footer_name_str medium_txt">
{{ service.name }}
</div>
{% if service.rel_children_for_service.all %}
<div class="footer_el_childs">
{% for sub_serv in service.rel_children_for_service.all %}
<div class="footer_name_str standart_semi_bold_txt">
{{ service.name }}
</div>
{% endfor %}
</div>
{% endif %}
</div>
{% if service.rel_children_for_service.all %}
<div class="footer_el_childs">
{% for sub_serv in service.rel_children_for_service.all %}
<div class="footer_el_children_name_str">
{{ service.name }}
</div>
{% endfor %}
</div>
{% endif %}
</div>
{% endfor %}
{% endfor %}
</div>
<div class="right_part_footer">
<div class="logo_container_footer">
<img src="{{ logo }}" class="logo_footer">
</div>
<div class="standart_txt">+1 234 5678901</div>
<div class="standart_txt">company@aerbim.com</div>
<button class="btn_contacts_footer">Контакты</button>
</div>
</div>
</div>
</div>

View File

@@ -11,5 +11,4 @@
{% if cur_section.plugin_presentation.all %}
{% include 'blocks/b_3d_s_d.html' with block=cur_section.plugin_presentation.all.0 %}
{% endif %}
{% include 'blocks/b_faq.html' %}
{% include 'blocks/b_footer.html' %}
{% include 'blocks/b_faq.html' %}

View File

@@ -3,4 +3,5 @@
{% include 'blocks/dynamic/b_sections_buttons.html' %}
{% endblock %}

View File

@@ -20,5 +20,6 @@
{% endblock %}
</div>
{% include 'blocks/b_footer.html' %}
</body>
</html>