سؤال

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.

هل كانت مفيدة؟

المحلول

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

نصائح أخرى

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 %}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top