16 lines
635 B
HTML
16 lines
635 B
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" %}">
|
|
<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>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'v2/blocks/b_search_routes.html' %}
|
|
{% endblock %} |