django-lite-cms
is a lightweight and modular CMS addon for Django inspired
by Mezzanine CMS. This package contains the core classes that are needed
to get basic CMS properties.
I've started with Mezzanine CMS for my projects but soon found it a little bit too heavy for my purposes. Unfortunately Mezzanine was not optimal supported by the community (at this time it has open vulnerabilities and the latest Django version supported is 4.0) so I needed a lighter approach that would also be a lot more modular. Since my code was only project local and I copied the code around between different projects, I started to put the code in installable libraries.
- Base classes with
- Properties: title, publish_date, expiry_date
- Status model (currently DRAFT and PUBLISHED) with scheduled publishing
- Manager with "published" query, based on status and date fields
- Supporting multilingual sites
- Search functionality
- Admin edit links in frontend
- HTML content field with tinymce5
Documentation is available at https://django-lite-cms-core.readthedocs.io.
Please note that the docs are work in progress, so it is not completed by now and will be subject to change.
There will come some more add-ons for this lib:
- A hierarchical page model with menus
- A blog app
- ...