I've created a new plugin using:
//create a new plugin
> ./manage.py startapp hero
And added it to the settings.py
It created a structure to which I've added files:
- hero
- static
hero.css
- templates
hero.html
__init__.py
cms_plugins.py
models.py
I want to put all the plugins in a new directory:
- plugins
- hero
- other plugin
How can I change a plugin's folder in Django CMS?