summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2014-09-30 00:50:19 +0100
committerStephen Finucane <stephen.finucane@intel.com>2015-11-05 03:51:37 +0000
commit17bca7243d7ec435c0e10f89d946d3e8e88a9397 (patch)
treeaa743722fe3e8f4905213e3892b6ba183ab4b1bc /templates/base.html
parent973177ce9d79985e667095ef27236f0af9a2d24b (diff)
downloadpatchwork-17bca7243d7ec435c0e10f89d946d3e8e88a9397.tar
patchwork-17bca7243d7ec435c0e10f89d946d3e8e88a9397.tar.gz
base: Add selectize to the base template
The only tricky thing is the inclusion of the EcmaScript shim for IE8. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Acked-by: Stephen Finucane <stephen.finucane@intel.com>
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
index 3f1d363..a0b6244 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -6,6 +6,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>{% block title %}Patchwork{% endblock %} - Patchwork</title>
<link rel="stylesheet" type="text/css" href="{% static "css/bootstrap.min.css" %}"/>
+ <link rel="stylesheet" type="text/css" href="{% static "css/selectize.bootstrap3.css" %}"/>
<link rel="stylesheet" type="text/css" href="{% static "css/style.css" %}"/>
<script type="text/javascript" src="{% static "js/common.js" %}"></script>
<script type="text/javascript" src="{% static "js/jquery-1.10.1.min.js" %}"></script>
@@ -15,8 +16,10 @@
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js">
</script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
+ <script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/2.0.8/es5-shim.min.js"></script>
<![endif]-->
<script type="text/javascript" src="{% static "js/bootstrap.min.js" %}"></script>
+ <script type="text/javascript" src="{% static "js/selectize.min.js" %}"></script>
{% block headers %}{% endblock %}
</head>
<body>