This commit is contained in:
2023-10-27 17:19:40 +03:00
parent 02f7edade5
commit b8c282f95f
4 changed files with 281 additions and 226 deletions

View File

@@ -11,7 +11,7 @@
</div>
<div
id="customer"
onclick="createRoute(this)"
onclick="select_tab_profile(this,'new_route_view','customer')"
{% if page_name == 'create_route_for_customer' %}
class="selected"
{% endif %} >
@@ -20,7 +20,7 @@
</div>
<div
id="mover"
onclick="createRoute(this)"
onclick="select_tab_profile(this,'new_route_view','mover')"
{% if page_name == 'create_route_for_mover' %}
class="selected"
{% endif %}>
@@ -29,7 +29,7 @@
</div>
<div
id="my_routes_id"
onclick="getRoute(this)"
onclick="select_tab_profile(this,'get_routes')"
{% if page_name == 'my_routes' %}
class="selected"
{% endif %}>
@@ -37,7 +37,7 @@
<a href="#">Мои объявления</a>
</div>
<div
onclick="writeMessage(this)"
onclick="select_tab_profile(this,'chats')"
{% if page_name == 'chat' %}
class="selected"
{% endif %}>
@@ -51,7 +51,7 @@
</a>
</div>
<div
onclick="technicalSupport(this)"
onclick="select_tab_profile(this,'support_tickets')"
{% if page_name == 'support' %}
class="selected"
{% endif %}>
@@ -59,7 +59,7 @@
<a href="#">Тех. поддержка</a>
</div>
<div
onclick="mySubscription(this)"
onclick="select_tab_profile(this,'show_cur_subscribe')"
{% if page_name == 'my_subscribe' %}
class="selected"
{% endif %}>
@@ -67,7 +67,7 @@
<a href="#">Моя подписка</a>
</div>
<div
onclick="myProfile(this)"
onclick="select_tab_profile(this,'change_profile')"
{% if page_name == 'change_profile' %}
class="selected"
{% endif %}>

View File

@@ -2,7 +2,7 @@
{% load tt_chat %}
<!DOCTYPE html>
<html lang="en">
<html lang="{{ request.LANGUAGE_CODE }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=100%,maximum-scale=5,minimum-scale=1,initial-scale=1">