Question

Is there a placeholder that indicates if the page is in edit mode or not? Something like

{% is_edit_mode %}?

I couldn't find anything in djangocms documentation.

Was it helpful?

Solution

in 3.0: {{ request.toolbar.edit_mode }}

OTHER TIPS

In django cms 3.8 it's now

{{ request.toolbar.edit_mode_active }}

See http://docs.django-cms.org/en/latest/reference/toolbar.html#cms.toolbar.toolbar.CMSToolbar.edit_mode_active

you can see it from ?edit parameter in URL

This works with 2.x

{% if 'edit' in request.GET %}
    {% placeholder content %}
{% endif %}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top