Skip to content

Latest commit

 

History

History
178 lines (128 loc) · 6.65 KB

README.rst

File metadata and controls

178 lines (128 loc) · 6.65 KB

django CMS Frontend

pypi Documentation Status coverage python django djangocms djangocms4

django CMS Frontend is a powerful plugin suite designed to streamline the integration of frontend frameworks into django CMS. Out of the box, it provides comprehensive support for Bootstrap 5, while also enabling the use of other CSS frameworks, such as Tailwind CSS, through custom components. Whether you're building responsive layouts or highly customized designs, django CMS Frontend is designed to simplify your development workflow.

preview.png

Key features

  • Easy to implement re-usable frontend custom components, which in the simplest case consist of a template and declarative sort of form class.
  • Support of Bootstrap 5, django CMS 3.8+ and django CMS 4 out of the box.
  • Support of other frameworks such as Tailwind CSS through custom components.
  • Separation of plugins from css framework, i.e. no need to rebuild you site's plugin tree if css framework is changed in the future, e.g. from Bootstrap 5 to a future version.
  • Plugins are re-usable as UI components anywhere in your project (e.g. in a custom app) giving your whole project a more consistent user experience.
  • Extensible within the project and with separate project (e.g. a theme app). Create your own components with a few lines of code only.

Description

django CMS Frontend is framework agnostic but comes with support of selected components of Bootstrap 5. Components can have different templates for different frameworks and the preferred framework can be set in the project settings.

It is up to you which (if any at all) components you want to include in your project. Each set of components is a separate package you can include in your project's INSTALLED_APPS.

The components are designed to be re-usable as UI components in your project, e.g. in a custom app, giving your whole project a more consistent user experience.

django CMS Frontend uses django-entangled by Jacob Rief to avoid bloating your project's database with css framework-dependent tables. Instead all design parameters are stored in a common JSON field and future releases of improved frontend features will not require to rebuild your full plugin tree.

Contributing

Because this is a an open-source project, we welcome everyone to get involved in the project and receive a reward for their contribution. Become part of a fantastic community and help us make django CMS the best CMS in the world.

We'll be delighted to receive your feedback in the form of issues and pull requests. Before submitting your pull request, please review our contribution guidelines.

The project makes use of git pre-commit hooks to maintain code quality. Please follow the installation steps to get pre-commit setup in your development environment.

We're grateful to all contributors who have helped create and maintain this package. Contributors are listed at the contributors section.

One of the easiest contributions you can make is helping to translate this addon on Transifex.

Requirements

See REQUIREMENTS in the setup.py file for additional dependencies:

  • django-cms, version 3.11 or later
  • django-filer, version 1.7 or later
  • djangocms-attributes-field, version 1.0 or later
  • djangocms-text
  • django-entangled 0.6 or later

Make sure django Filer and django CMS Text CKEditor are installed and configured appropriately.

Installation

For a manual install:

  • run pip install djangocms-frontend

  • add the following entries to your INSTALLED_APPS (or only those you need):

    'easy_thumbnails',
    'djangocms_frontend',
    'djangocms_frontend.contrib.accordion',  # optional
    'djangocms_frontend.contrib.alert',  # optional
    'djangocms_frontend.contrib.badge',  # optional
    'djangocms_frontend.contrib.card',  # optional
    'djangocms_frontend.contrib.carousel',  # optional
    'djangocms_frontend.contrib.collapse',  # optional
    'djangocms_frontend.contrib.content',  # optional
    'djangocms_frontend.contrib.grid',  # optional
    'djangocms_frontend.contrib.icon',  # optional
    'djangocms_frontend.contrib.image',  # optional
    'djangocms_frontend.contrib.jumbotron',  # optional
    'djangocms_frontend.contrib.link',  # optional
    'djangocms_frontend.contrib.listgroup',  # optional
    'djangocms_frontend.contrib.media',  # optional
    'djangocms_frontend.contrib.tabs',  # optional
    'djangocms_frontend.contrib.utilities',  # optional
    
  • run python manage.py migrate

djangocms-frontend has a weak dependencies on djangocms-icon you can install separately or by adding an option:

pip install djangocms-frontend[djangocms-icon]  # Installs djangocms-icon for icon support in links

Documentation

See readthedocs for the documentation.

License

See LICENSE.