A new addon for Plone to create web-based dynamic pages.
The concept is pretty similar that of Volto blocks:
- You can build a page using reusable items.
- Each item can have different fields
- Each item can have different views
-
DynamicPageFolder: this content type will be created in a given folder, and will be the container where all the rows will be added.
-
DynamicPageRow: this content type will be the one that will be rendered in a separate row in the view
-
DynamicPageRowFeatured: this content type can be used to save static information that can be shown in a row. For instance: each of the items of a slider need a title, a description or an image. They can be added using this content-type
There is just one view dynamic_view
registered for Folders and Naviation roots
To provide different fields, you should register standard behaviors
to the DynamicPageRow
content type.
To provide different views, you should register standard views (using zcml
).
Those views must be registered for implementers of cs_dynamicpages.content.dynamic_page_row.IDynamicPageRow
and their name must start by cs_dynamicpages-
.
To ease installation of such views in your products, cs_dynamicpages.utils
contains 2 utility functions:
add_custom_view
: function to add a given view to the list of available row typesenable_behavior
: function to enable the given behavior in theDynamicPageRow
content type
You may register several behaviors for DynamicPageRow
objects but only use some of the fields
provided by them in a given view.
You can restrict which fields are shown in the edit form of the DynamicPageRow
going to the
Dynamic Pages Controlpanel, and setting there the list of fields that will be shown when editing
each of the row types.
Install cs_dynamicpages with pip
:
pip install cs_dynamicpages
And to create the Plone site:
make create-site
- An operating system that runs all the requirements mentioned.
- uv
- Make
- Git
- Docker (optional)
-
Clone this repository, then change your working directory.
git clone git@github.com:codesyntax/cs_dynamicpages.git cd cs_dynamicpages
-
Install this code base.
make install
This package provides markers as strings (<!-- extra stuff goes here -->
) that are compatible with plonecli
and bobtemplates.plone
.
These markers act as hooks to add all kinds of subtemplates, including behaviors, control panels, upgrade steps, or other subtemplates from plonecli
.
To run plonecli
with configuration to target this package, run the following command.
make add <template_name>
For example, you can add a content type to your package with the following command.
make add content_type
You can add a behavior with the following command.
make add behavior
You can check the list of available subtemplates in the [`bobtemplates.plone` `README.md` file](https://github.com/plone/bobtemplates.plone/?tab=readme-ov-file#provided-subtemplates).
See also the documentation of [Mockup and Patternslib](https://6.docs.plone.org/classic-ui/mockup.html) for how to build the UI toolkit for Classic UI.
The project is licensed under GPLv2.
Generated using Cookieplone (0.9.7) and cookieplone-templates (4d55553) on 2025-07-17 11:59:12.982862. A special thanks to all contributors and supporters!