Fabian Braun
Fabian Braun
@sakhawy Fixed both resize cursor and missing polyfill patch. If you're good to go, let me know by approving the PR :-)
Do you programmatically create plugins (e.g. with cascade)? Here's a repo that includes a management command to fix the plugin tree: https://github.com/fsbraun/djangocms4-utilities Try to fix with `manage.py fixtree`. At your...
The import script should be ok if it only uses `cms.api`. If you want I can have a look. Other common situations include automated creation of, say, columns when creating...
Another potential source of the gaps could have been running the `./manage.py cms delete-orphaned-plugins` management command. It was fixed in 4.1.1. Before that it left gaps when deleting ghost plugins:...
Hi @openHBP ! Can you double-check your `get_template()` result and the template folders? I cannot reproduce this. If `get_template()` returns `"my_app/my_model_structure.html"` the typical place for the template would be `my_app/templates/my_app/my_model_structure.html`.
When does the error happen? I would assume that the structure view is necessary to edit the content. So if that works, the template should be found. Maybe it is...
I like the `all()` optimisation. How does caching the fallback languages help performance. The fallback languages only depend on the settings, or am I missing something?
@gonzalodelgado Thanks for reporting this! It might be a double of https://github.com/django-cms/django-cms/issues/7841 . You could check by installing the `develop-4` branch on a test system.
The reason is, **that there is no setting `CMS_DEFAULT_IN_NAVIGATION`**. We would need to add it first. Please close this issue if ok with this, or turn into a feature request.
@jrief Wouldn't it suffice to add `safe`? ``` {% page_attribute "page_title" as page_title %} {{ page_title|safe }} … ``` Obviously, this would open up a vulnerability to scripting attacks. Maybe...