Commit d21656a4d68e10e4577b7f8c126fe8b832319a67
1 parent
43d3c4e0
Exists in
master
and in
2 other branches
Window_view imports
Showing
1 changed file
with
30 additions
and
2 deletions
Show diff stats
bulletin/templates/bulletin/window_view.html
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | <html> | 6 | <html> |
7 | <head> | 7 | <head> |
8 | <title>{{ title }} | {{ theme.title }}</title> | 8 | <title>{{ title }} | {{ theme.title }}</title> |
9 | - | 9 | + <script type="text/javascript" src="{% static 'js/jquery-ui.js' %}"></script> |
10 | <script type="text/javascript" src="{% static 'js/jquery-3.1.0.min.js' %}"></script> | 10 | <script type="text/javascript" src="{% static 'js/jquery-3.1.0.min.js' %}"></script> |
11 | 11 | ||
12 | <meta http-equiv="Cache-Control" content="no-cache, no-store" /> | 12 | <meta http-equiv="Cache-Control" content="no-cache, no-store" /> |
@@ -18,11 +18,39 @@ | @@ -18,11 +18,39 @@ | ||
18 | <link rel="stylesheet" type="text/css" href="{% static 'material/css/ripples.min.css' %}"> | 18 | <link rel="stylesheet" type="text/css" href="{% static 'material/css/ripples.min.css' %}"> |
19 | <link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap-slider.css' %}"> | 19 | <link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap-slider.css' %}"> |
20 | <link rel="stylesheet" type="text/css" href="{% static 'font-awesome-4.6.3/css/font-awesome.min.css' %}"> | 20 | <link rel="stylesheet" type="text/css" href="{% static 'font-awesome-4.6.3/css/font-awesome.min.css' %}"> |
21 | - | 21 | + <script type="text/javascript" src="{% static 'bootstrap-3.3.7/js/bootstrap.min.js' %}"></script> |
22 | + <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.7/css/bootstrap.css' %}"> | ||
22 | <!-- Custom styles --> | 23 | <!-- Custom styles --> |
23 | <link rel="stylesheet" type="text/css" href="{% static 'css/base/amadeus_responsive.css' %}"> | 24 | <link rel="stylesheet" type="text/css" href="{% static 'css/base/amadeus_responsive.css' %}"> |
24 | <link rel="stylesheet" type="text/css" href="{% static 'css/base/amadeus.css' %}"> | 25 | <link rel="stylesheet" type="text/css" href="{% static 'css/base/amadeus.css' %}"> |
25 | 26 | ||
27 | + <link href="{{ theme.favicon_url }}" rel="shortcut icon" /> | ||
28 | + <!-- Roboto font --> | ||
29 | + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css"> | ||
30 | + <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
31 | + <link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap-datetimepicker.css' %}"> | ||
32 | + <link rel="stylesheet" type="text/css" href="{% static 'css/alertifyjs/alertify.min.css' %}"> | ||
33 | + <link rel="stylesheet" type="text/css" href="{% static 'css/alertifyjs/themes/bootstrap.css' %}"> | ||
34 | + | ||
35 | + <script type="text/javascript" src="{% static 'material/js/material.min.js' %}"></script> | ||
36 | + <script type="text/javascript" src="{% static 'material/js/ripples.min.js' %}"></script> | ||
37 | + <script type="text/javascript" src="{% static 'js/moment-with-locales.js' %}"></script> | ||
38 | + <script type="text/javascript" src="{% static 'js/bootstrap-datetimepicker.js' %}"></script> | ||
39 | + <script type="text/javascript" src="{% static 'js/alertify.min.js' %}"></script> | ||
40 | + <script type="text/javascript" src="{% static 'js/jscookie.js' %}"></script> | ||
41 | + <script type="text/javascript" src="{% static 'js/jPages.js' %}"></script> | ||
42 | + <script type="text/javascript" src="{% static 'js/d3.min.js' %}"></script> | ||
43 | + <script type="text/javascript" src="{% static 'subjects/js/modal_subject.js' %}"></script> | ||
44 | + | ||
45 | + | ||
46 | + <script type="text/javascript">$.material.init()</script> | ||
47 | + <script src="{% static 'js/main.js' %}"></script> | ||
48 | + <script src="{% static 'js/socket.js' %}"></script> | ||
49 | + | ||
50 | + <!-- Summernote --> | ||
51 | + <script src="{% static 'summernote/summernote.js' %}" type="text/javascript"></script> | ||
52 | + <link href="{% static 'summernote/summernote.css' %}" type="text/css" rel="stylesheet" /> | ||
53 | + | ||
26 | {% with 'css/themes/'|add:theme.css_style|add:'.css' as theme_selected %} | 54 | {% with 'css/themes/'|add:theme.css_style|add:'.css' as theme_selected %} |
27 | <link rel="stylesheet" type="text/css" href="{% static theme_selected %}"> | 55 | <link rel="stylesheet" type="text/css" href="{% static theme_selected %}"> |
28 | {% endwith %} | 56 | {% endwith %} |