Paulo Alvarado
Paulo Alvarado
**To Do** - [ ] Move menus app into cms app. - [ ] Refactor cache invalidation. - [ ] Add site awareness to menu rendering. - [ ] Multiple...
We should mention in the custom plugin docs that overriding plugin ordering is not possible. Related #5001
If a user adds content to a static placeholder in multiple languages, publishing one of these languages will cause the dirty flag of the static placeholder to be set to...
So I was going to commit a fix for https://github.com/stefanfoulis/django-filer/blob/develop/filer/models/foldermodels.py#L20 but looks like this method is not even used or working. It throws a `FieldError` because the field `has_all_mandatory_data` does...
Articles can be recovered with Aldryn Reversion but the tags do not come back.
Some plugins rely on context variables set by their parent's `render()` method, because of how plugins are rendered here, the context is always new instead of being shared by plugins,...
This error happens because here https://github.com/divio/django-emailit/blob/develop/emailit/api.py#L71 you pass a nested list instead of a normal list.
Hello, Packages that leverage this app like django-tablib allows us to export user submitted data. This exposes a potential security issue where users can add excel formulas to certain exported...
Using the {% placeholder %} tag outside of cms pages has been forbidden for some time but currently the cms still renders these placeholders as editable even though they don't...
`cms.middleware.toolbar.ToolbarMiddleware` accesses request.POST on every request, causing django to process the data and prevent us from accessing the `request.body`. ``` ipdb> request.body *** RawPostDataException: You cannot access body after reading...