File size: 1,981 Bytes
c001f24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>{% block title %}DocuPDF{% endblock %}</title>
    {% block styles %}{% endblock %}
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
    <link href="https://cdn.jsdelivr.net/npm/tom-select@2.2.2/dist/css/tom-select.bootstrap5.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
    <style>
        /* Tom Select Dark Mode Fix */
        .ts-control {
            background-color: #2b3035 !important;
            border-color: #495057 !important;
            color: #fff !important;
        }
        .ts-control input {
            color: #fff !important;
        }
        .ts-dropdown, .ts-dropdown .optgroup-header {
            background-color: #2b3035 !important;
            border-color: #495057 !important;
        }
        .ts-dropdown .option:hover, .ts-dropdown .active {
            background-color: #0d6efd !important;
        }
        .ts-control .item {
            background-color: #0d6efd !important;
            color: #fff !important;
        }
    </style>
    {% block head %}{% endblock %}
</head>
<body>
    {% include '_navbar.html' %}
    <div class="content-wrapper" style="min-height: calc(100vh - 56px); overflow-y: auto;">
        {% block content %}{% endblock %}
    </div>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/tom-select@2.2.2/dist/js/tom-select.complete.min.js"></script>
    {% block scripts %}{% endblock %}
</body>
</html>