/djangocms-no-versioning

published/unpublished for django-cms 4+

Primary LanguagePythonMIT LicenseMIT

djangocms-no-versioning

This is a proof of concept, to enable published/unpublished pages in django-cms v4+, without versioning (i.e. as a djangocms-versioning replacement). As without djangocms-versioning, all pages are immediatly published, and cannot be hidden at all (only removed from menu, which is not enough).

Features

Development

Getting started

  • there is test app, available with ./manage.py runserver.
  • to run tests: ./manage.py test
  • to run tests with many django and cms version combinations: tox

Contributions

If you want to contribute to this project, please perform the following steps

# Fork this repository
# Clone your fork
mkvirtualenv djangocms-no-versioning
pip install -r dev_requirements.txt
git checkout -b feature_branch
...