25 lines
1.2 KiB
HTML
25 lines
1.2 KiB
HTML
{% extends "tb_base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block meta %}
|
|
<link rel="stylesheet" href="{% static "v2/css/forms.css" %}">
|
|
<link rel="stylesheet" href="{% static "v2/css/widgets/w_select_country.css" %}">
|
|
<link rel="stylesheet" href="{% static "v2/css/widgets/w_datarangepicker.css" %}">
|
|
<link rel="stylesheet" href="{% static "v2/css/pages/p_search_route_results.css" %}">
|
|
<link rel="stylesheet" href="{% static "v2/css/widgets/w_route_card.css" %}">
|
|
<script src="{% static "v2/js/forms.js" %}"></script>
|
|
<script src="{% static "v2/js/widgets/w_select_country.js" %}"></script>
|
|
<script src="{% static "v2/js/widgets/w_daterangepicker.js" %}"></script>
|
|
<script src="{% static "v2/js/blocks/b_search_routes.js" %}"></script>
|
|
<script src="{% static "v2/js/widgets/w_route_card.js" %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="title">{% trans "Поиск посылки" %}</div>
|
|
{% include 'v2/blocks/b_search_routes.html' %}
|
|
<div class="routes_content_part">
|
|
{% include "v2/blocks/b_filter_routes.html" %}
|
|
<div class="routes_search_results"></div>
|
|
</div>
|
|
{% endblock %} |