我正在尝试重用template shown here作为登录页面的基础,但是当我运行它时,我收到此错误:
'url' is not a valid tag library
我需要做一些特别的设置吗?
模板中的违规行是:
{% load url from future %}
如果重要的话我会使用Django 1.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)
VS
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 %}