summaryrefslogtreecommitdiff
path: root/design
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2015-12-23 20:40:08 +0000
committerluxagraf <sng@luxagraf.net>2015-12-23 20:40:08 +0000
commit82ce53f7b8416be8e5fd964d62aa65239f5e3123 (patch)
treea9f112ddcaaef6f1bf4ac65bb623ff9f449f0784 /design
parent1c5e35271ed54f0d5ea9d4a4ec9ebc39a345b429 (diff)
added autocomplete to tag fields in Links admin
Diffstat (limited to 'design')
-rw-r--r--design/templates/admin/base.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/design/templates/admin/base.html b/design/templates/admin/base.html
index 455d0d2..0af7cc7 100644
--- a/design/templates/admin/base.html
+++ b/design/templates/admin/base.html
@@ -3,12 +3,14 @@
<head>
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}" />
+<script type="text/javascript" src="/static/admin/js/jquery.js"></script>
{% block extrastyle %}{% endblock %}
<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% static "admin/css/ie.css" %}{% endblock %}" /><![endif]-->
{% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %}
<script type="text/javascript">window.__admin_media_prefix__ = "{% filter escapejs %}{% static "admin/" %}{% endfilter %}";</script>
{% block extrahead %}{% endblock %}
{% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
+{% include 'autocomplete_light/static.html' %}
</head>
{% load i18n %}