106 lines
4.7 KiB
HTML
106 lines
4.7 KiB
HTML
{% load static %} {% load i18n %}
|
|
<!DOCTYPE html>
|
|
{% get_current_language as LANGUAGE_CODE %}
|
|
<html lang="{{ LANGUAGE_CODE }}"
|
|
dir="{% if LANGUAGE_CODE == 'ar' %}rtl{% else %}ltr{% endif %}"
|
|
data-bs-theme=""
|
|
data-navigation-type="default"
|
|
data-navbar-horizontal-shape="default">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="Haikal - The Backbone of Car Qar: An innovative car inventory management system designed to streamline dealership operations. Manage inventory, sales, transfers, and accounting seamlessly with advanced analytics and intuitive tools. Inspired by Arabic origins, Haikal empowers businesses with precision and efficiency.">
|
|
|
|
<title>{% block title %}{% trans 'HAIKAL' %}{% endblock %}</title>
|
|
|
|
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'images/favicons/apple-touch-icon.png' %}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'images/favicons/favicon-32x32.png' %}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'images/favicons/favicon-16x16.png' %}">
|
|
<link rel="shortcut icon" type="image/x-icon" href="{% static 'images/favicons/favicon.ico' %}">
|
|
<link rel="manifest" href="{% static 'images/favicons/manifest.json' %}">
|
|
<meta name="msapplication-TileImage" content="{% static 'images/logos/logo-d.png' %}">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<script src="{% static 'vendors/simplebar/simplebar.min.js' %}"></script>
|
|
<script src="{% static 'js/config.js' %}"></script>
|
|
<script src="{% static 'js/sweetalert2.all.min.js' %}"></script>
|
|
|
|
|
|
|
|
<!-- ===============================================-->
|
|
<!-- Stylesheets-->
|
|
<!-- ===============================================-->
|
|
|
|
|
|
<link href="{% static 'vendors/mapbox-gl/mapbox-gl.css' %}" rel="stylesheet">
|
|
<link href="{% static 'vendors/swiper/swiper-bundle.min.css' %}" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&display=swap" rel="stylesheet">
|
|
<link href="{% static 'vendors/simplebar/simplebar.min.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/sweetalert2.min.css' %}" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
|
|
{% if LANGUAGE_CODE == 'en' %}
|
|
<link href="{% static 'css/theme.min.css' %}" type="text/css" rel="stylesheet" id="style-default">
|
|
<link href="{% static 'css/user.min.css' %}" type="text/css" rel="stylesheet" id="user-style-default">
|
|
{% else %}
|
|
<link href="{% static 'css/theme-rtl.min.css' %}" type="text/css" rel="stylesheet" id="style-rtl">
|
|
<link href="{% static 'css/user-rtl.min.css' %}" type="text/css" rel="stylesheet" id="user-style-rtl">
|
|
{% endif %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
{% include 'messages.html' %}
|
|
<main class="main" id="top">
|
|
|
|
<div class="content">
|
|
|
|
{% block content %}
|
|
<!-- Main content goes here -->
|
|
{% endblock %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</main>
|
|
<!-- ===============================================-->
|
|
<!-- End of Main Content-->
|
|
<!-- ===============================================-->
|
|
<script>
|
|
|
|
|
|
|
|
|
|
</script>
|
|
{% block customJS %}{% endblock customJS %}
|
|
|
|
|
|
|
|
<!-- ===============================================-->
|
|
<!-- JavaScripts-->
|
|
<!-- ===============================================-->
|
|
<script src="{% static 'vendors/popper/popper.min.js' %}"></script>
|
|
<script src="{% static 'vendors/bootstrap/bootstrap.min.js' %}"></script>
|
|
<script src="{% static 'vendors/anchorjs/anchor.min.js' %}"></script>
|
|
<script src="{% static 'vendors/is/is.min.js' %}"></script>
|
|
<script src="{% static 'vendors/fontawesome/all.min.js' %}"></script>
|
|
<script src="{% static 'vendors/lodash/lodash.min.js' %}"></script>
|
|
<script src="{% static 'vendors/list.js/list.min.js' %}"></script>
|
|
<script src="{% static 'vendors/feather-icons/feather.min.js' %}"></script>
|
|
<script src="{% static 'vendors/dayjs/dayjs.min.js' %}"></script>
|
|
<script src="{% static 'js/phoenix.js' %}"></script>
|
|
<script src="{% static 'vendors/echarts/echarts.min.js' %}"></script>
|
|
<script src="{% static 'js/travel-agency-dashboard.js' %}"></script>
|
|
<script src="{% static 'vendors/mapbox-gl/mapbox-gl.js' %}"></script>
|
|
<script src="https://unpkg.com/@turf/turf@6/turf.min.js"></script>
|
|
<script src="{% static 'vendors/swiper/swiper-bundle.min.js' %}"></script>
|
|
</body>
|
|
|
|
</html> |