- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到此错误,但我不知道为什么突然遇到 django-pipeline 问题。
我正在 virtualenv 下运行该项目,我尝试使用所需的基本应用程序创建一个新项目,看看它是否可以修复它,但我总是收到此错误:
TemplateSyntaxError at /
'compressed' is not a valid tag library: ImportError raised loading pipeline.templatetags.compressed: No module named conf
Request Method: GET
Request URL: http://127.0.0.1:8000/
Django Version: 1.7.3
Exception Type: TemplateSyntaxError
Exception Value:
'compressed' is not a valid tag library: ImportError raised loading pipeline.templatetags.compressed: No module named conf
Exception Location: /home/ymorin007/.virtualenvs/humor15b/local/lib/python2.7/site-packages/django/template/defaulttags.py in load, line 1119
Python Executable: /home/ymorin007/.virtualenvs/humor15b/bin/python
Python Version: 2.7.6
Python Path:
['/home/ymorin007/workspace/sites/humor15.com/src',
'/home/ymorin007/.virtualenvs/humor15b/lib/python2.7',
'/home/ymorin007/.virtualenvs/humor15b/lib/python2.7/plat-x86_64-linux-gnu',
'/home/ymorin007/.virtualenvs/humor15b/lib/python2.7/lib-tk',
'/home/ymorin007/.virtualenvs/humor15b/lib/python2.7/lib-old',
'/home/ymorin007/.virtualenvs/humor15b/lib/python2.7/lib-dynload',
'/usr/lib/python2.7',
'/usr/lib/python2.7/plat-x86_64-linux-gnu',
'/usr/lib/python2.7/lib-tk',
'/home/ymorin007/.virtualenvs/humor15b/local/lib/python2.7/site-packages']
我的设置文件
########## COMPRESSION CONFIGURATION
STATICFILES_STORAGE = 'pipeline.storage.PipelineStorage'
PIPELINE_COMPILERS = (
'pipeline.compilers.less.LessCompiler',
)
PIPELINE_CSS = {
'humor15': {
'source_filenames': (
'css/bootstrap.min.css',
'css/base.css',
'users/css/base.css',
'signin/css/base.css',
'css/media.css',
),
'output_filename': 'css/humor15.css',
'extra_context': {
'media': 'screen,projection',
},
},
}
PIPELINE_JS = {
'humor15': {
'source_filenames': (
'js/bootstap.min.js',
),
'output_filename': 'js/humor15.js',
}
}
########## END COMPRESSION CONFIGURATION
THIRD_PARTY_APPS = (
'ckeditor', # https://github.com/shaunsephton/django-ckeditor#installation
'crispy_forms',
'django_countries', # https://pypi.python.org/pypi/django-countries http://en.wikipedia.org/wiki/ISO_3166-1
'django_mobile',
'pipeline',
'social.apps.django_app.default', # http://psa.matiasaguirre.net/
)
INSTALLED_APPS = DJANGO_APPS + HUMOR15_APPS + THIRD_PARTY_APPS + LOCAL_APPS
最佳答案
由于版本 1.4 django-pipeline 更改了模板标签名称,您必须替换:
{% load compressed %}
{% compressed_css 'foo' %}
{% compressed_js 'bar' %}
与:
{% load pipeline %}
{% stylesheet 'foo' %}
{% javascript 'bar' %}
参见http://django-pipeline.readthedocs.org/en/latest/usage.html#templatetags了解详情。
关于Django-pipeline 'compressed' 不是有效的标签库 : ImportError raised loading pipeline. templatetags.compressed:没有名为 conf 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27972007/
我有我正在开发的这个网站的相册,并且正在使用 jquery 按国家/城市进行过滤。如果我将每个国家/地区硬编码到 jquery 中,我会得到我想要的结果。我显然不想这样做。以下是我的意思。
有人知道它是否可能对“templatetags”使用自定义目录eje:“my-project/templatetags” Normal My-Project-Name My-App __i
我想将 comment 文本字段中的每个主题标签转换为 url,以便可以点击。 例如,用户提交, s = "I can't get enough of #SO because #developers
我正在尝试为我的项目创建自定义 Django 模板标签。我按照可用的指南创建了标签。但是标签没有被拾取。它们甚至没有被编译(因为没有生成 .pyc 文件)。 结构是my_dir>app>templat
我有一个简单的模板标签,它返回一个随机事实。当数据库中没有事实时,我得到一个异常值列表索引超出范围。我用 try, except* 包装了查询集,并检查模板中是否有事实。你可以看到下面的代码: 事实.
是否可以创建一个评估为 bool 值的 Django 模板标签? 例如,我可以这样做: {% if my_custom_tag %} .. {% else %} .. {% endif
我最近阅读了一些 django 代码,并且大量使用了 Templatetag 标签: {% templatetag openblock %} block page_title {% templat
我目前正在编写一个快速的 python 脚本,以将我的所有旧模板调整为新的基本模板。为此,我需要将 {% block body %} 内的代码移至其他位置。 我已经得到了这个来匹配我所有的 {% lo
我有以下模板 {% regroup product.hotel.facilities.all by facilitytype as facilities %} {% for facility in f
我有一些值想传递给过滤器并从中获取 URL。 在我的模板中我有: {% if names %} {% for name in names %} {{name}} {%if not
我正在尝试通过创建自定义模板标签的用户来呈现已登录用户名的导航菜单。 PFB代码, @register.inclusion_tag('kpt/navbar.html') def getmenu( pa
我的应用程序的 templatetag 代码因上下文变量中缺少键 (page) 引发 KeyError。在我的模板中,我不使用 context.variableKeyName 引用上下文变量,我仅引用
我有一个模板标记,它返回转换为用户时区的日期时间对象。要格式化它,我更喜欢使用内置过滤器“日期”来格式化它。 是否可以对模板标记的结果使用过滤器? 最佳答案 您可以使用“过滤器”模板标签包装自定义模板
嗯,当我尝试在 Django 中使用“包含”时,我遇到了一些我自己无法解决的困惑问题。 这是我的项目的结构。 MyProject--- App1---
我有一个 OrderedDict,我需要显示它的键、值,但我无法获取它的值,我有这个 dict = ([('sainbath', 'thesailor'), ('HELLO', 'WORLD' )])
我有一些要添加到页面的 html(在本例中是通过 TinyMCE 创建的)。但是,出于安全原因,我不想只打印用户输入的所有内容。 有谁知道只允许呈现 html 的安全子集的模板标签(最好是过滤器)?
我已经为此烦恼了一整天,但无法弄清楚问题所在。它发生在我将我的 Django 项目从一台 PC 复制到另一台 PC 之后。 Watching for file changes with StatRel
我创建了一个模板标签,将 yaml 文档加载到 python 列表中。在我的模板中,我有 {% get_content_set %},这会转储原始列表数据。我想要做的是类似 {% for items
我正在使用 django 编写博客,并且在博客条目的底部我想显示与我使用 django-taggit 附加的标签相关的 5 个最新条目。 所以我想我需要将当前博客条目(我们正在查看的博客条目)传递给模
我有一个国际化的 django (1.4) 应用程序。 在这个应用程序中,我有一个模板标签,它需要知道当前的语言是什么。 我想我可以使用django.utils.translation.get_lan
我是一名优秀的程序员,十分优秀!