diff --git a/sigi/apps/saberes/templates/saberes/dashboard.html b/sigi/apps/saberes/templates/saberes/dashboard.html
index 430c73f..675b67b 100644
--- a/sigi/apps/saberes/templates/saberes/dashboard.html
+++ b/sigi/apps/saberes/templates/saberes/dashboard.html
@@ -1,5 +1,8 @@
{% extends "admin/base_site.html" %}
+{# turned off to avoid bootstrap version conflict #}
+{% block default_javascript %}{% endblock %}
+
{% block extrahead %}
{{ block.super }}
{{ headers|safe }}
diff --git a/templates/admin/base.html b/templates/admin/base.html
index cc066d7..9f31fcd 100644
--- a/templates/admin/base.html
+++ b/templates/admin/base.html
@@ -26,9 +26,13 @@
window.__admin_media_prefix__ = "{% filter escapejs %}{% static "admin/" %}{% endfilter %}";
//]]>
+
+ {% block default_javascript %}
+ {# We should be able to turn this off, to avoid conflict in integrated pages like petaho's dashboards #}
+ {% endblock %}
{% block extrahead %}{% endblock %}