如果配置不正确,我想在渲染预览中显示内容警告。它应该只对登录的内容管理员可见。
有没有办法在模板中知道它是登录用户还是渲染预览?
作为一个基本思想:
{% if menu.root_uuid %}
<!-- do amazing things -->
{% elseif is_render_preview() %}
<div class="warning">
The menu can not be displayed, because no root folder is selected.
</div>
{% endif %}