我正在研究我的django 1.10版本。我已经安装了tastypie_swagger库。当我加载网址时,我收到以下错误。
django.template.exceptions.TemplateSyntaxError: 'future' is not a registered tag
library. Must be one of:
admin_list
admin_modify
admin_static
admin_urls
cache
i18n
l10n
log
static
staticfiles
tz
我该如何解决这个问题?我是django的新手
答案 0 :(得分:1)
您使用的tastypie_swagger
版本不支持Django 1.9+,因为它在模板中包含{% load url from future %}
。
问题已由pull request 113解决,但从那时起一直没有发布。您可以尝试在GitHub上安装master分支,或者切换到Django 1.8。