問題を解決するために、この Web サイトの多くのソリューションを試しましたが、それでもエラーが発生します。ここに必要な情報をすべて入れます。
ビュー.py:
def about(request):
return render_to_response('homepage/about.html')
urls.py:
urlpatterns = patterns('blog.apps.homepage.views',
url(r'^$', 'index', name="homepage_index"),
url(r'^about/$', 'about', name="homepage_about"),
url(r'^contact/$', 'contact', name="homepage_contact"),
url(r'^archive/$', 'archive', name="homepage_archive"),
)
グローバル urls.py:
(r'^$',include('blog.apps.homepage.urls')),
グローバル設定.py:
ROOT_URLCONF = 'blog.urls'
木:
templates/
├── base.html
└── homepage
├── about.html
├── archive.html
├── contact.html
└── index.html
index.html:
{% extends "base.html" %}
{% load url from future %}
{% block title %}
Index Page
{% endblock %}
{% block navi %}
<a href="{% url 'homepage_index' %}">home</a> -
<a href="{% url 'homepage_about' %}">about</a> -
<a href="{% url 'homepage_contact' %}">contact</a> -
<a href="{% url 'homepage_archive' %}">archive</a>
{% endblock %}
{% block content %}
<h3>Entries:</h3>
{%for e in entries %}
<div>{{e.title}} - {{e.created}}</div>
<div>{{e.text}}</div>
<br/>
{% endfor %}
{% endblock %}
{%block footer %}
2012 - MyBlog
{% endblock %}
エラー:
引数 '()' とキーワード引数 '{}' を持つ 'homepage_about' の逆が見つかりません。