pythondjangocarouseldjango-cmsbootstrap-carousel

Add Custom bootstap template to Django CMS Project


I hope you are well.  The reason i'm writing to you is because ive been utilizing the Django cms bootstrap carousel plug in.

Im all set however i am struggling to figure out how to add me newly added custom template to my application. 

Im wondering if there is something i need to add to my settings.py file like CAROUSEL_TEMPLATES = [ ' ' ]

I am not using setup.py

All of the applications are installed via requirements.txt

static and troage files are in AWS and templates are served from the source code of the applictation.

I would be very grateful if you could point me in the right direction?

Djangocms version: Django-cms 3.10

Django version : Django==3.2

Plug in im using: djangocms-bootstrap 1.1.2


Solution

  • It all worked perfectly thank you.The only thing i had to remove the _ from your settings .py suggestion. so it workeed with the following:

    DJANGOCMS_BOOTSTRAP4_CAROUSEL_TEMPLATES = (
        ('default', ('Default')),
        ('theme', ('Theme')),
    )
    

    Thanks again!