0.0.123 add about_service static_page

This commit is contained in:
2023-09-01 16:27:12 +03:00
parent f7d4bbf2b3
commit cee09d18db
10 changed files with 129 additions and 2 deletions

View File

@@ -1709,6 +1709,11 @@ button#more_button{
padding: 0px 40px 0px 40px;
}
.mid_block_static>span{
display: block;
width: 47%;
padding-bottom: 20px;
}
.benefit_img{
display: flex;
height: 211px;

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 69 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 95 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 88 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 91 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -22,8 +22,8 @@
<div>
<div><a href="{% url 'create_route_for_mover_View' %}">Перевезти посылку</a></div>
<div><a href="{% url 'create_route_for_customer_View' %}">Отправить посылку</a></div>
<div><a href="{% url 'static_page' 'mover_search' %}">Для отправителя</a></div>
<div><a href="{% url 'static_page' 'customer_search' %}">Для перевозчика</a></div>
<div><a href="{% url 'static_page' 'for_movers' %}">Для отправителя</a></div>
<div><a href="{% url 'static_page' 'for_customers' %}">Для перевозчика</a></div>
</div>
</div>
</div>

View File

@@ -0,0 +1,65 @@
{% load i18n %}
{% load i18n %}
<div class="top_block_static">
<h2 id=title_static>{{ page.title }}</h2>
<span id="sub_title_static">{{ page.description }}</span>
<button id="more_button">{% translate "Узнать подробнее" %}</button>
<img src="/static/img/png/Box1.png" alt="">
<img src="/static/img/png/Box2.png" alt="">
<img src="/static/img/png/Box3.png" alt="">
<img src="/static/img/png/Box4.png" alt="">
</div>
<div class="mid_block_static">
<h2 id="title_static">{% translate "О сервисе Trip With Bonus" %}</h2>
<span>{% translate "Trip With Bonus- это сервис, который соединяет отправителя посылки и перевозчика." %}</span>
<span>{% translate "Вы можете разместить объявление о перевозке посылки и перевозчики со всего мира откликнуться на ваше объявление или воспользовавшись поиском на сайте найти перевозчика, который будет готов взять Вашу посылку и доставить в указанное место авто- или авива транспортом." %}</span>
<span>{% translate "Если же Вы часто путешествуете или в разъездах, Вы можете самостоятельно перевозить посылки и при этом получать бонусы и благодарности." %}</span>
<div class="benefit_img">
<figure>
<img src="/static/img/svg/personal_call.svg" alt="">
<figcaption>{% translate "Прямой контакт с перевозчиком/ отправителем" %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/cooperation_img.svg" alt="">
<figcaption>{% translate "Взаимовыгодное сотрудничество" %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/tariff_plans_img.svg" alt="">
<figcaption>{% translate "Тарифные планы на любой вкус и кошелёк." %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/build_logistics.svg" alt="">
<figcaption>{% translate "Возможность выстраивать логистику самостоятельно" %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/using_service_img.svg" alt="">
<figcaption>{% translate "Простота и доступность пользования сервисом" %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/communication_img.svg" alt="">
<figcaption>{% translate "Общение и новые знакомства" %}</figcaption>
</figure>
</div>
</div>
<div class="bottom_block_static">
<h2 id=title_static>{% translate "Станьте нашим партнером" %}</h2>
<span id="sub_title_static">{% translate "Приглашаем к сотрудничесту и развитию, вместе с большой и сильной командой. Мы предлагам Вам вместе с нами развивать сервис и стать партнером" %}</span>
<div class="button_register">
<button>{% translate "Читать подробнее" %}</button>
</div>
</div>

View File

@@ -8,4 +8,7 @@
{% if page.url == 'advertisement' %}
{% include "blocks/static_pages_blocks/b_advertisement.html" %}
{% endif %}
{% if page.url == 'about_service' %}
{% include "blocks/static_pages_blocks/b_about_service.html" %}
{% endif %}
{% endblock %}