This commit is contained in:
2023-10-25 16:27:08 +03:00
parent 371457735a
commit 02f7edade5
4 changed files with 37 additions and 14 deletions

View File

@@ -1920,11 +1920,6 @@
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
} }
.btn_menu_profile:first-of-type{
margin-top: 20px;
}
.btn_menu_profile{ .btn_menu_profile{
border-radius: 10px; border-radius: 10px;
background: #FFF; background: #FFF;
@@ -1938,6 +1933,10 @@
cursor: pointer; cursor: pointer;
} }
.btn_menu_profile:last-of-type{
margin-bottom: 0;
}
.separator_menu_profile{ .separator_menu_profile{
margin: 10px 0 10px 0; margin: 10px 0 10px 0;
border:1px solid #E6E6E6; border:1px solid #E6E6E6;
@@ -1948,6 +1947,7 @@
color: #000; color: #000;
font-size: 14px; font-size: 14px;
width: 100%; width: 100%;
margin-bottom: 20px;
} }
.header_big_background{ .header_big_background{

View File

@@ -43,7 +43,14 @@
// }); // });
// } // }
// }); // });
function init_arrival_DT (){ function init_arrival_DT (date,single=true,hour=true){
let minDate = null
if (date){
minDate = date
} else {
minDate = moment()
}
let onl_param = "" let onl_param = ""
if (window.location.href === "http://localhost:8016/ru/profile/page/create_route_for_mover/" || window.location.href === "http://localhost:8016/ru/profile/page/create_route_for_customer/"){ if (window.location.href === "http://localhost:8016/ru/profile/page/create_route_for_mover/" || window.location.href === "http://localhost:8016/ru/profile/page/create_route_for_customer/"){
@@ -54,14 +61,20 @@ function init_arrival_DT (){
$(place_1).daterangepicker({ $(place_1).daterangepicker({
"autoapply": true, "autoapply": true,
"linkedCalendars": false, "linkedCalendars": false,
"singleDatePicker":true, "singleDatePicker":single,
"timePicker":true, "timePicker":hour,
"timePicker24Hour":true "timePicker24Hour":true,
"minDate":minDate
}, },
function (start, end, label) { function (start, end, label) {
// $('#displayRegervation').text('Registration date is: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD')); // $('#displayRegervation').text('Registration date is: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD'));
$('#id_arrival_DT').val(start.format('DD.MM.YYYY HH:mm')) if (single === true){
$('#id_arrival_DT').val(start.format('DD.MM.YYYY HH:mm'))
}
else if (single === false){
$('#id_arrival_DT').val(start.format('DD.MM.YYYY') + " - " + end.format('DD.MM.YYYY'))
}
}); });
$(`${place_1.id} .drp-calendar.right`).hide(); $(`${place_1.id} .drp-calendar.right`).hide();
@@ -87,12 +100,13 @@ function init_departure_DT (){
onl_param = "singleDatePicker" onl_param = "singleDatePicker"
} }
if (place_1) { if (place_1) {
$(place_1).daterangepicker({ $(place_1).daterangepicker({
"autoapply": true, "autoapply": true,
"linkedCalendars": false, "linkedCalendars": false,
"singleDatePicker":true, "singleDatePicker":true,
"timePicker":true, "timePicker":true,
"timePicker24Hour":true "timePicker24Hour":true,
}, },
function(start, end, label) { function(start, end, label) {
// $('#displayRegervation').text('Registration date is: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD')); // $('#displayRegervation').text('Registration date is: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD'));
@@ -166,7 +180,7 @@ $(function() {
// $('#regervation')[0].dataset['departure_DT'] = start.format('YYYY-MM-DD'); // $('#regervation')[0].dataset['departure_DT'] = start.format('YYYY-MM-DD');
// $('#regervation')[0].dataset['arrival_DT'] = end.format('YYYY-MM-DD'); // $('#regervation')[0].dataset['arrival_DT'] = end.format('YYYY-MM-DD');
$('#id_departure_DT').val(start.format('DD.MM.YYYY') + " - " + end.format('DD.MM.YYYY')) $('#id_departure_DT').val(start.format('DD.MM.YYYY') + " - " + end.format('DD.MM.YYYY'))
init_arrival_DT(start.format('DD.MM.YYYY'),false,false)
}); });
$(`${place_1.id} .drp-calendar.right`).hide(); $(`${place_1.id} .drp-calendar.right`).hide();

View File

@@ -73,7 +73,7 @@
</div> </div>
<div class="menu_profile_btn"> <div class="menu_profile_btn">
{% if user_subscribe %}<div class="subscribe_type_txt"><span class="f-l">Подписка:</span> <span class="f-r">{{ user_subscribe.subscribe.name }}</span></div>{% endif %} {% if user_subscribe %}<div class="subscribe_type_txt"><span class="f-l">Подписка:</span> <span class="f-r">{{ user_subscribe.subscribe.name }}</span><div class="clear_both"></div></div>{% endif %}
<a class="btn_menu_profile" href="{% url "user_profile" %}" >Перейти в профиль</a> <a class="btn_menu_profile" href="{% url "user_profile" %}" >Перейти в профиль</a>
<a class="btn_menu_profile" href="{% url 'profile_page' 'create_route_for_mover' %}">Перевезти посылку</a> <a class="btn_menu_profile" href="{% url 'profile_page' 'create_route_for_mover' %}">Перевезти посылку</a>
<a class="btn_menu_profile" href="{% url 'profile_page' 'create_route_for_customer' %}">Отправить посылку</a> <a class="btn_menu_profile" href="{% url 'profile_page' 'create_route_for_customer' %}">Отправить посылку</a>

View File

@@ -1,6 +1,15 @@
{% load static %}
<h1>Добро пожаловать: <span>{{ user.first_name }} {{ user.last_name }}</span> <span>({{ user.username }})</span></h1> <h1>Добро пожаловать: <span>{{ user.first_name }} {{ user.last_name }}</span> <span>({{ user.username }})</span></h1>
<div class="profile_prof"><img class="avatar_profile" src="{{ user.user_profile.avatar }}" alt=""> <div class="profile_prof"><img class="avatar_user_profile" {% if user.user_profile.avatar %}
src="{{ user.user_profile.avatar.url }}"
{% else %}src="{% static "img/svg/User.svg" %}"{% endif %} alt="">
<div> <div>
{# <div class="avatar_block">#}
{# <img class="avatar_user_profile" {% if user.user_profile.avatar %}#}
{# src="{{ user.user_profile.avatar.url }}"#}
{# {% else %}src="{% static "img/svg/User.svg" %}"{% endif %} >#}
{# </div>#}
<div>Статус: {{ user.user_profile.get_account_type_display }}</div> <div>Статус: {{ user.user_profile.get_account_type_display }}</div>
{# <div>#} {# <div>#}
{# <select name="" id="">#} {# <select name="" id="">#}