0.0.27
This commit is contained in:
27
templates/blocks/b_footer.html
Normal file
27
templates/blocks/b_footer.html
Normal file
@@ -0,0 +1,27 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
<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>
|
||||
|
||||
{% 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 %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,4 +1,5 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
{% load admin_interface_tags %}
|
||||
|
||||
<div class="header">
|
||||
|
||||
Reference in New Issue
Block a user