Django - {%load url from future%}产生错误“'url'不是有效的标记库”

时间:2011-04-13 17:58:30

标签: django django-templates

我正在尝试重用template shown here作为登录页面的基础,但是当我运行它时,我收到此错误:

'url' is not a valid tag library

我需要做一些特别的设置吗?

模板中的违规行是:

{% load url from future %}

如果重要的话我会使用Django 1.2。

2 个答案:

答案 0 :(得分:21)

在django 1.9中,默认情况下会加载url标记,因此您只需删除加载语句。

RemovedInDjango19Warning: Loading the `url` tag from the `future` library is deprecated and will be removed in Django 1.9. Use the default `url` tag instead.

答案 1 :(得分:8)

1.3 docs

VS

1.2 docs

django 1.3之前没有{% load url from future %}

1.2 docs

中使用此功能
{% extends "base.html" %}

{% block content %}

{% if form.errors %}
<p>Your username and password didn't match. Please try again.</p>
{% endif %}

<form method="post" action="{% url django.contrib.auth.views.login %}">
{% csrf_token %}
<table>
<tr>
    <td>{{ form.username.label_tag }}</td>
    <td>{{ form.username }}</td>
</tr>
<tr>
    <td>{{ form.password.label_tag }}</td>
    <td>{{ form.password }}</td>
</tr>
</table>

<input type="submit" value="login" />
<input type="hidden" name="next" value="{{ next }}" />
</form>

{% endblock %}