This commit is contained in:
SBD
2023-12-07 19:54:32 +03:00
parent 205876a9e5
commit 05776d2564
11 changed files with 236 additions and 221 deletions

View File

@@ -1,23 +1,24 @@
{% load static %}
{% load i18n %}
<div class="cut-width">
<div class="block_service two_cols">
{% for service in services %}
<div class="service_block_container two_cols">
<div class="service_container">
{% if service.picture %}
<div class="left_part_service">
<img class="service_img" src="{{ MEDIA_URL }}{{ service.picture }}">
<div {% include "block_settings/blocks_settings.html" %}>
<div class="cut-width">
<div class="block_service two_cols">
{% for service in services %}
<div class="service_block_container two_cols">
<div class="service_container">
{% if service.picture %}
<div class="left_part_service">
<img class="service_img" src="{{ MEDIA_URL }}{{ service.picture }}">
</div>
{% endif %}
<div class="right_part_service two_cols standart_txt {% if not service.picture %}w_100{% endif %}">
{{ service.name }}
</div>
{% endif %}
<div class="right_part_service two_cols standart_txt {% if not service.picture %}w_100{% endif %}">
{{ service.name }}
</div>
<div class="clear_both"></div>
<div class="clear_both"></div>
</div>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
</div>
</div>