This repository has been archived by the owner on Aug 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_base.html
102 lines (70 loc) · 3.95 KB
/
admin_base.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{% load compress %}
{% load staticfiles %}
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> </title>
<!-- css-->
<link href='https://use.fontawesome.com/releases/v5.0.6/css/all.css' rel='stylesheet'>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
{% compress css %}
<link href="{% static '/js/packages/core/main.css' %}" rel='stylesheet' />
<link href="{% static '/js/packages/daygrid/main.css' %}" rel='stylesheet' />
<link href="{% static '/js/packages/list/main.css' %}" rel='stylesheet' />
<link href="{% static '/js/Notiflix/Minified/notiflix-1.9.1.min.css' %}" rel='stylesheet' />
<link href="{% static '/js/templates/admin_base.css' %}" rel='stylesheet' />
{% endcompress %}
<!------------------------------------------------------------------------------>
<!-- js-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous">
</script>
<!-- Line LIFF -->
<script src="https://d.line-scdn.net/liff/1.0/sdk.js"></script>
<!--jquery-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- bootstrap-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous">
</script>
<!--Full calendar-->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js'></script>
<!-- Google reCaptcha -->
<script src="https://www.google.com/recaptcha/api.js?render=_reCAPTCHA_site_key"></script>
{% compress js %}
<script src="{% static '/js/packages/core/main.js' %}"></script>
<script src="{% static '/js/packages/daygrid/main.js' %}"></script>
<script src="{% static '/js/packages/interaction/main.js' %}"></script>
<script src="{% static '/js/packages/moment/main.js' %}"></script>
<script src="{% static '/js/packages/list/main.js' %}"></script>
<script src="{% static '/js/Notiflix/AIO/notiflix-aio-1.9.1.js' %}"></script>
<script src="{% static '/js/Notiflix/Minified/notiflix-1.9.1.min.js' %}"></script>
<script src="{% static '/js/packages/core/locales-all.js' %}"></script>
{% endcompress %}
</head>
<body>
{% include 'admin_header.html' %}
{% block headmessage %} {% endblock %}
{% block content %} {% endblock %}
</body>
</html>