0

我在我的应用程序中创建了一个 templatetags 文件夹,里面有一个 __init__.py + active.py,即使应用程序在 INSTALLED_APPS 中,Django 也找不到它:

''active'' is not a valid tag library: Template library 'active' not found, tried
django.templatetags.'active',website.home.templatetags.'active',
django_extensions.templatetags.'active',django.contrib.flatpages.templatetags.'active',
django.contrib.staticfiles.templatetags.'active',
django.contrib.admin.templatetags.'active'
4

1 回答 1

1

您可能尝试像这样加载模板标签

{% load 'active_tags' %}

试试这个:

{% load active_tags %}
于 2012-06-22T14:55:50.910 回答