jumpserver/apps/templates/_head_css_js.html

24 lines
728 B
HTML
Raw Normal View History

{% load static %}
<!-- css file -->
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
<link href="{% static "css/font-awesome.css" %}" rel="stylesheet">
<link href="{% static "css/plugins/toastr/toastr.min.css" %}" rel="stylesheet">
2016-09-14 07:19:27 +00:00
<link href="{% static "css/plugins/sweetalert/sweetalert.css" %}" rel="stylesheet">
2016-09-01 08:05:14 +00:00
<link href="{% static "css/style.css" %}" rel="stylesheet">
2016-08-16 14:13:06 +00:00
<link href="{% static "css/plugins/vaildator/jquery.validator.css" %}" rel="stylesheet">
2016-09-14 07:19:27 +00:00
<!-- scripts -->
2016-09-14 07:19:27 +00:00
<script src="{% static 'js/jquery-2.1.1.js' %}"></script>
2016-09-14 07:38:54 +00:00
2016-09-14 07:19:27 +00:00
<!-- Sweet alert -->
<script src="{% static 'js/plugins/sweetalert/sweetalert.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
2016-09-01 08:05:14 +00:00