26 lines
822 B
HTML
26 lines
822 B
HTML
{% extends 'tb_base.html' %}
|
|
{% load static %}
|
|
|
|
|
|
{% block meta %}
|
|
<script src='{% static "js/jquery_v3_6_4.js" %}'> </script>
|
|
<script src='{% static "js/ion.rangeSlider.min.js" %}'> </script>
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" rel="stylesheet">
|
|
<script src='{% static "js/user_profile.js" %}'> </script>
|
|
<script src='{% static "js/user_profile(boris).js" %}'> </script>
|
|
<script src='{% static "js/check_new_messages.js" %}'></script>
|
|
{# <script src='{% static "js/chat_sockets.js" %}'></script>#}
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="{% static 'css/ion.rangeSlider.min.css' %}">
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'blocks/b_user_profile.html' %}
|
|
{% endblock %}
|
|
|