jumpserver/apps/templates/_head_css_js.html

17 lines
540 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-01 08:05:14 +00:00
<link href="{% static "css/style.css" %}" rel="stylesheet">
2016-08-17 16:47:34 +00:00
2016-08-16 14:13:06 +00:00
<link href="{% static "css/plugins/vaildator/jquery.validator.css" %}" rel="stylesheet">
<!-- scripts -->
<script src="{% static "js/jquery-2.1.1.js" %}"></script>
<script src="{% static "js/bootstrap.min.js" %}"></script>
2016-09-01 08:05:14 +00:00