Django runserver報錯
django.template.exceptions.TemplateSyntaxError: 'comment_tags' is not a registered tag library. Must be one of:
account
admin_list
admin_modify
admin_static
admin_urls
blog_tags
cache
humanize
i18n
l10n
log
socialaccount
static
staticfiles
tz
解決方案:
settings.py中添加配置
INSTALLED_APPS = [
? ? ...
????'comment',# 評論
]