【问题描述】
今天在构建django-rest-swagger的时候报了如下的错误:
[code]django.template.exceptions.TemplateSyntaxError: \'staticfiles\' is not a registered tag library. Must be one of:admin_listadmin_modifyadmin_urlscachei18nl10nlogrest_frameworkstatictz
【解决办法】
在setting.py中添加如下内容:
[code]\'libraries\': { # Adding this section should work around the issue.\'staticfiles\': \'django.templatetags.static\',},