全部博文(61)
分类: Python/Ruby
2017-03-30 15:50:57
摘自官方说明,django1.9以下版本,可以直接在settings.py的INSTALLED_APPS中添加debugtools
django大于1.9版本,除了要加debugtools,在TEMPLATES中还要进行如下添加,还需要在html模版中load一下,{% load debugtools_tags %}
INSTALLED_APPS += ( 'debugtools', )
As of Django 1.9, either use {% load debugtools_tags %} or add the following to the settings:
点击(此处)折叠或打开
-
'builtins': [
"debugtools.templatetags.debugtools_tags",
],