]> git.parisson.com Git - django-postman.git/commitdiff
forgot to return to a default django 1.4 configuration
authorPatrick Samson <pk.samson@gmail.com>
Tue, 14 Aug 2012 06:34:02 +0000 (08:34 +0200)
committerPatrick Samson <pk.samson@gmail.com>
Tue, 14 Aug 2012 06:34:02 +0000 (08:34 +0200)
postman/templates/postman/base_write.html

index 4a30c38de4c566da6d2625c0a2e7d92fe7d0fede..86117095cd5c09c9a5a4dfb4d31413c0d89364b9 100644 (file)
@@ -2,23 +2,23 @@
 {% load i18n %}
 {% block extrahead %}{{ block.super }}
 {% if autocompleter_app.is_active %}
-{# dj v1.4 #}{# {% load static %} #}
+{# dj v1.4 #}{% load static %}
 <script type="text/javascript"src="
 {# using the available admin jQuery is enough: #}
- {# dj v1.4 #}{# {% static 'admin/js/jquery.min.js' %} #}
- {# dj v1.2/3 #}{% load adminmedia %}{% admin_media_prefix %}js/jquery.min.js
+ {# dj v1.4 #}{% static 'admin/js/jquery.min.js' %}
+ {# dj v1.2/3 #}{# {% load adminmedia %}{% admin_media_prefix %}js/jquery.min.js #}
 {# unless you really want your own: #}
  {# dj v1.2 #}{# {{ MEDIA_URL }}js/jquery.min.js #}
 "></script>
 {% if autocompleter_app.name == "ajax_select" %}{% if autocompleter_app.version == "1.1.4" or autocompleter_app.version == "1.1.5" %}<script type="text/javascript" src="
-{# dj v1.4 #}{# {% static 'js/jquery.autocomplete.min.js' %} #}
+{# dj v1.4 #}{% static 'js/jquery.autocomplete.min.js' %}
 {# dj v1.3 #}{# {{ STATIC_URL }}js/jquery.autocomplete.min.js #}
-{# dj v1.2 #}{{ MEDIA_URL }}js/jquery.autocomplete.min.js
+{# dj v1.2 #}{# {{ MEDIA_URL }}js/jquery.autocomplete.min.js #}
 "></script>
 <link type="text/css" media="all" rel="stylesheet" href="
-{# dj v1.4 #}{# {% static 'css/jquery.autocomplete.css' %} #}
+{# dj v1.4 #}{% static 'css/jquery.autocomplete.css' %}
 {# dj v1.3 #}{# {{ STATIC_URL }}css/jquery.autocomplete.css #}
-{# dj v1.2 #}{{ MEDIA_URL }}css/jquery.autocomplete.css
+{# dj v1.2 #}{# {{ MEDIA_URL }}css/jquery.autocomplete.css #}
 " />{# else: for version 1.2.x use AJAX_SELECT_BOOTSTRAP + AJAX_SELECT_INLINES or arrange to include jqueryUI/js/css #}{% endif %}{% endif %}
 {% endif %}
 {% endblock %}