我正在尝试实现django-registration-redux,并使用了https://github.com/macdhuibh/django-registration-templates提供的Andres编写的模板。但问题是,当我运行任何东西时,我得到NoReverseMatch错误。
我尝试渲染base.html模板以检查错误,我在第12行遇到错误。
并且base.html为
{% load i18n %}
<html lang="en">
<head>
<link rel="stylesheet" href="{{ STATIC_URL }}style.css" />
<title>{% block title %}User test{% endblock %}</title>
</head>
<body>
<div id="header">
{% block header %}
<a href="{% url 'index' %}">{% trans "Home" %}</a> |
{% if user.is_authenticated %}
{% trans "Logged in" %}: {{ user.username }}
(<a href="{% url 'auth_logout' %}">{% trans "Log out" %}</a> |
<a href="{% url 'auth_password_change' %}">{% trans "Change password" %}</a>)
{% else %}
<a href="{% url 'auth_login' %}">{% trans "Log in" %}</a>
{% endif %}
<hr />
{% endblock %}
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
<div id="footer">
{% block footer %}
<hr />
{% endblock %}
</div>
</body>
</html>
index.html是
{% extends "base.html" %}
{% load i18n %}
{% block content %}
Index page
{% endblock %}
和urls.py为
from django.conf.urls import url
from . import views
app_name = 'forum'
urlpatterns = [
url(r'^$', views.index, name='index'),
]
我收到错误,如下图所示:
答案 0 :(得分:1)
您可能需要在代码中指定应用名称:
<a href="{% url 'forum:index' %}">{% trans "Home" %}</a>