Élie Bouttier 6 years ago
parent
commit
f40ae114be
3 changed files with 2 additions and 27 deletions
  1. 0 25
      djadhere/settings.py
  2. 1 1
      djadhere/templates/_base.html
  3. 1 1
      djadhere/templates/base.html

+ 0 - 25
djadhere/settings.py

@@ -149,31 +149,6 @@ STATIC_URL = '/static/'
 
 LOGOUT_REDIRECT_URL = 'adhesion-detail'
 
-BOOTSTRAP3 = {
-
-    # The URL to the jQuery JavaScript file
-    # If not set, "build-in" CDN is used (maxcdn)
-    # 'jquery_url': '//code.jquery.com/jquery.min.js',
-    # 'jquery_url': STATIC_URL + 'jquery/dist/jquery.js',
-
-    # The Bootstrap base URL
-    # If not set, "build-in" CDN is used (maxcdn)
-    # 'base_url': '//netdna.bootstrapcdn.com/bootstrap/3.2.0/',
-    # 'base_url': STATIC_URL + 'bootstrap/dist/',
-
-    # The complete URL to the Bootstrap CSS file
-    # (None means derive it from base_url)
-    'css_url': None,
-
-    # The complete URL to the Bootstrap CSS file
-    # (None means no theme)
-    'theme_url': None,
-
-    # The complete URL to the Bootstrap JavaScript file
-    # (None means derive it from base_url)
-    'javascript_url': None,
-}
-
 LEAFLET_CONFIG = {
     'DEFAULT_CENTER': (43.6044, 1.4433),
     'DEFAULT_ZOOM': 12,

+ 1 - 1
djadhere/templates/_base.html

@@ -12,7 +12,7 @@
     {% endblock %}
 
     {% block js %}
-    {% comment %}{% bootstrap_javascript %}{% endcomment %}
+    {% bootstrap_javascript jquery="full" %}
     {% endblock %}
   </head>
 

+ 1 - 1
djadhere/templates/base.html

@@ -62,7 +62,7 @@
     </nav>
 
 {% block container %}
-	<main role="main" class="container">
+	<main class="container">
       {% block breadcrumbol %}{% endblock %}
       {% bootstrap_messages %}
 {% block content %}{% endblock %}