使用Django的包含标记的标记库无效

时间:2011-08-29 16:58:36

标签: python django

我正在创建一个包含标记,以便在我的新闻页面中包含调查。但这是我得到的错误: 'survey_extras'不是有效的标记库:ImportError raise loading survey.templatetags.survey_extras:没有名为models的模块

我只知道我的survey_extras中的以下导入存在问题: 来自survey.models import问题消息是:未解决导入:问题。而问题是我的调查模型中的一个类。

这是我的survey_extras:

from django import template
from survey.models import Question


register = template.Library();

@register.inlusion_tag('form.html',takes_context=True)
def survey_inclusion(context):
    """ """
   text = Question.objects.filter()
   return {'text':text}

你有什么想法吗? 谢谢

0 个答案:

没有答案