[Fixed]-Django and bootstrap carousel – use offline

1πŸ‘

Ok.. I have got the answer for Offline Carousel for bootstrap.

  1. Download > jquery slim build (https://code.jquery.com/jquery-3.3.1.slim.js)

  2. Copy the contents in your own File as JS file (like copy paste codes in your file and save as jquery.js)

  3. Link your script inside body tag (before body tag ends) like…<script src="jquery.js"></script>

  4. Finally link bootstrap js file as step 3.

Thank You!

0πŸ‘

From looking at the documentation, it does not appear that you can use Bootstrap features offline by default. If you look at the default settings for django-bootstrap3, you will see that this package does use the CDNs behind the scenes.

As far as I know, the only way to use bootstrap offline would be to have a copy of the Bootstrap css and JavaScript files saved on your local machine, as well as the jQuery files, since the Bootstrap JavaScript plugins depend on that.

I have not used django-bootstrap3 but it looks like if you have a copy of the necessary Bootstrap files stored locally, you should be able to update your Django settings for django-bootstrap3 to point to these local copies instead of the copies on the various CDNs.

Leave a comment