我是 django 的 n00b,我已经完成了民意调查教程,而且没有太多。我想用 Lightning Fast Shop (LFS) 建立一个在线商店,它几乎可以满足我的任何需求。我知道最好有一个更好的 django 基础......
我想做的第一步是自定义一些模板。以下是有关如何执行此操作的说明:
FLS 框架已正确安装:我可以打开网站、定义产品、将产品添加到购物车等。
我已经配置了settings.TEMPLATE_DIRS
它,使其指向我项目的内部文件夹。看来我做对了,因为当我放在那里一个模板时base.html
,我收到以下错误:
NoReverseMatch at /
'url' requires a non-empty first argument. The syntax changed in Django 1.5, see the docs.
... a lot of information...
Error during template rendering
In template c:\development\......\lfs-installer\lfs_project\theme\templates\lfs\base.html, error at line 47
'url' requires a non-empty first argument. The syntax changed in Django 1.5, see the docs.
37 <script type="text/javascript" src="{{ STATIC_URL }}jquery/lightbox/jquery.lightbox-0.5.js"></script>
38 <script type="text/javascript" src="{{ STATIC_URL }}js/lfs.js"></script>
39 {% endcompress %}
40
41 </head>
42 <body class="{% block section %}lfs{% endblock %}">
43 <div id="header">
44 <div class="container">
45 {% block header %}
46 <div class="span-6 logo">
47 <a href="{% url lfs.core.views.shop_view %}">
48 <img class="logo"
49 src="{{ STATIC_URL }}img/logo.jpg"
50 alt="Logo" />
51 </a>
52 </div>
53 <div class="span-18 search last">
54 {% if user.is_authenticated %}
55 {% if user.first_name %}
56 <span>{{ user.first_name }} {{user.last_name}}</span>
57 {% else %}
我试图从 flstheme 包中复制整个模板,但它仍然不起作用。
对于纯 django,这个主题有很好的解释,但它 FLS 是一个额外的复杂层,我无法正确理解。提前非常感谢。
编辑这是freeze
我的虚拟环境:
Django==1.6.5
Pillow==1.7.5
South==0.7.3
django-appconf==0.6
django-compressor==1.1.1
django-countries==1.5
django-lfs==0.7.8
django-lfstheme==0.7.4
django-pagination==1.0.7
django-paypal==0.1.2
django-piston==0.2.3
django-portlets==1.1.1
django-postal==0.92
django-reviews==0.2.1
django-tagging==0.3.1
lfs-contact==1.0
lfs-order-numbers==1.0b1
six==1.7.3