diff --git a/ServicesApp/js_views.py b/ServicesApp/js_views.py index 9b4fbb8..94cd665 100644 --- a/ServicesApp/js_views.py +++ b/ServicesApp/js_views.py @@ -42,10 +42,21 @@ def get_content_for_section_ajax(request): from .funcs import get_sections + # one_list_childs = { + # 'name' : 'вгд' + # } + # list_childs = [one_list_childs] + # one_list_el = { + # 'name':'абв', + # 'childs': list_childs + # } + # els_footer_list = [one_list_el] + # Dict = { 'cur_section': section, 'sections': get_sections(), - 'services': services + 'services': services, + } html = render_to_string('pages/content/c_projectiing_section.html', Dict, request=request) diff --git a/static/aerbimCSS.css b/static/aerbimCSS.css index a590399..ac1aebb 100644 --- a/static/aerbimCSS.css +++ b/static/aerbimCSS.css @@ -58,6 +58,10 @@ body,html{ text-align: -webkit-right; } +.logo_header{ + height: 50px; +} + .right_part_header { width: 75%; float: right; @@ -630,4 +634,23 @@ body,html{ color: #000000; padding: 20px; width: calc(100% - 40px); +} + +/*footer*/ + +.block_footer{ + width: 100%; + background: #10212B; +} + +.footer_els_container{ + width: 100%; + display: flex; + padding-top: 70px; + padding-bottom: 60px; +} + +.footer_name_str{ + color: #ffffff; + font-weight: 500; } \ No newline at end of file diff --git a/templates/blocks/b_footer.html b/templates/blocks/b_footer.html new file mode 100644 index 0000000..5e9f56e --- /dev/null +++ b/templates/blocks/b_footer.html @@ -0,0 +1,27 @@ +{% load static %} +{% load i18n %} + \ No newline at end of file diff --git a/templates/blocks/static/header.html b/templates/blocks/static/header.html index 1d9021a..69e185e 100644 --- a/templates/blocks/static/header.html +++ b/templates/blocks/static/header.html @@ -1,4 +1,5 @@ {% load static %} +{% load i18n %} {% load admin_interface_tags %}
diff --git a/templates/forms/f_consultation.html b/templates/forms/f_consultation.html index bac835c..e0c10ff 100644 --- a/templates/forms/f_consultation.html +++ b/templates/forms/f_consultation.html @@ -1,4 +1,5 @@ {% load static %} +{% load i18n %}
diff --git a/templates/pages/content/c_projectiing_section.html b/templates/pages/content/c_projectiing_section.html index d657200..859e84d 100644 --- a/templates/pages/content/c_projectiing_section.html +++ b/templates/pages/content/c_projectiing_section.html @@ -11,4 +11,5 @@ {% 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' %} \ No newline at end of file +{% include 'blocks/b_faq.html' %} +{% include 'blocks/b_footer.html' %} \ No newline at end of file