vl_snippet is django-cms plugin which is part of VL (Viva Library, https://vits.pro/dev/).
This plugin adds snippet (custom html, js code or prepared template) to page.
vl_snippet requires vl_core package: https://github.com/vivazzi/vl_core
There is no vl_snippet in PyPI, so you can install this package from repository only.
$ pip install git+https://github.com/vivazzi/vl_snippet
- Add
vl_snippet
toINSTALLED_APPS
aftervl_core
:
INSTALLED_APPS = (
...
'vl_core',
'vl_snippet',
...
)
- Run
python manage.py migrate
to create the vl_snippet models.
Run python manage.py test vl_snippet
To reporting bugs or suggest improvements, please use the issue tracker.
Thank you very much, that you would like to contribute to vl_snippet. Thanks to the present, past and future contributors.
If you think you have discovered a security issue in our code, please do not create issue or raise it in any public forum until we have had a chance to deal with it. For security issues use [email protected]
- Project's home: https://github.com/vivazzi/vl_snippet
- Report bugs and suggest improvements: https://github.com/vivazzi/vl_snippet/issues
- Author's site, Artem Maltsev: https://vivazzi.pro
Copyright © 2022 Artem Maltsev and contributors.
MIT licensed.