我是 django-cms 的新手,我找不到在模板中使用调试变量的方法。我基本上想做这样的事情
{% if settings.debug %}
Development
{% else %}
Production
{% endif %}
根据这个问题How do I get a "debug" variable in my Django template context? , 我应该:
添加
'django.core.context_processors.debug'
到TEMPLATE_CONTEXT_PROCESSORS
. 我已经这样做了。使用 RequestContext(而不是 Context)
但是如何在不弄乱 django-cms 文件的情况下做到这一点呢?