1
Ok.. I have got the answer for Offline Carousel for bootstrap.
-
Download > jquery slim build (https://code.jquery.com/jquery-3.3.1.slim.js)
-
Copy the contents in your own File as JS file (like copy paste codes in your file and save as jquery.js)
-
Link your script inside body tag (before body tag ends) likeβ¦
<script src="jquery.js"></script>
-
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.
- ValidationError raises when updating
- Django Search bar feature not working?
- Django's form textarea doesn't appear in template
- Trouble setting-up directories to compile from in Django-Assets / Webassets