pre-deploy

This commit is contained in:
2024-11-05 15:38:34 +09:00
parent daa5c49bb9
commit 7ce0c6c62a
6 changed files with 6 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -12,9 +12,6 @@
<li class="nav-item">
<a class="nav-link" href="#">Услуги</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Проекты</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Контакты</a>
</li>

View File

@@ -23,6 +23,8 @@
<!-- Модальное окно для создания заявки на услугу -->
{% include "web/modal_order_form.html" %}
<!-- Проверяем, есть ли проекты, связанные с данной услугой, и показываем раздел, если есть -->
{% if service.projects.exists %}
<div class="container py-4">
<div class="row-cols-auto">
<div class="col-md-8 col-xl-6 text-center mx-auto">
@@ -46,7 +48,10 @@
{% endfor %}
</div>
</div>
{% endif %}
<!-- Проверяем, есть ли отзывы в базе данных, и показываем раздел, если есть -->
{% if reviews %}
<div class="container py-4">
<div class="row-cols-auto">
<div class="col-md-8 col-xl-6 text-center mx-auto">
@@ -78,6 +83,7 @@
{% endfor %}
</div>
</div>
{% endif %}
<!-- Подключение JavaScript файлов, вынесенных в директорию static/assets/js -->
<script src="{% static 'assets/js/get-csrf-token.js' %}"></script>