73 lines
2.8 KiB
HTML
73 lines
2.8 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
||
|
|
||
|
<title>{% block page_title %}{% endblock %} - Usody</title>
|
||
|
<meta content="" name="description">
|
||
|
<meta content="" name="keywords">
|
||
|
|
||
|
<!-- Favicons -->
|
||
|
<link href="{{ url_for('static', filename='img/favicon.png') }}" rel="icon">
|
||
|
<link href="{{ url_for('static', filename='img/apple-touch-icon.png') }}" rel="apple-touch-icon">
|
||
|
|
||
|
<!-- Google Fonts -->
|
||
|
<link href="https://fonts.gstatic.com" rel="preconnect">
|
||
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
|
||
|
|
||
|
<!-- JS Files -->
|
||
|
<script src="{{ url_for('static', filename='js/jquery-3.6.0.min.js') }}"></script>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/simple-datatables@5.0.3" type="text/javascript"></script>
|
||
|
|
||
|
|
||
|
|
||
|
<!-- Vendor CSS Files -->
|
||
|
<link href="{{ url_for('static', filename='vendor/bootstrap/css/bootstrap.min.css') }}" rel="stylesheet">
|
||
|
<link href="{{ url_for('static', filename='vendor/bootstrap-icons/bootstrap-icons.css') }}" rel="stylesheet">
|
||
|
<link href="https://cdn.jsdelivr.net/npm/simple-datatables@5.0.3/dist/style.css" rel="stylesheet" type="text/css">
|
||
|
|
||
|
|
||
|
<!-- Template Main CSS File -->
|
||
|
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
|
||
|
<link href="{{ url_for('static', filename='css/devicehub.css') }}" rel="stylesheet">
|
||
|
|
||
|
<!-- =======================================================
|
||
|
* Template Name: NiceAdmin - v2.2.0
|
||
|
* Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
|
||
|
* Author: BootstrapMade.com
|
||
|
* License: https://bootstrapmade.com/license/
|
||
|
======================================================== -->
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
{% block body %}{% endblock %}
|
||
|
|
||
|
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
|
||
|
|
||
|
<!-- Vendor JS Files -->
|
||
|
<script src="{{ url_for('static', filename='vendor/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
||
|
|
||
|
<!-- Template Main JS File -->
|
||
|
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
||
|
|
||
|
<!-- Api backend -->
|
||
|
<script>
|
||
|
const API_URLS = {
|
||
|
Auth_Token: `Basic ${btoa("{{ current_user.token }}:")}`, //
|
||
|
currentUserID: "{{ current_user.id }}",
|
||
|
lots: "{# url_for('Lot.main') #}",
|
||
|
lots_detail: "{# url_for('inventory.lotdevicelist', lot_id='ReplaceTEXT') #}",
|
||
|
devices: "{{ url_for('Device.main') }}",
|
||
|
devices_modify: "{# url_for('Lot.lot-device', id='UUID') #}",
|
||
|
devices_detail: "{# url_for('inventory.device_details', id='ReplaceTEXT')#}"
|
||
|
}
|
||
|
</script>
|
||
|
<script src="{{ url_for('static', filename='js/api.js') }}"></script>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|