Django テンプレートでリンクを作成するときにエラーが発生します。
私のテンプレートは次のようになります。
<a href="{% url 'location_detail' pk=location.id %}">{{ location.name }}</a>
私の urls.py は次のようになります:
url(r'^location(?P<pk>\d+)/$', views.location_detail, name="location_detail"),
私の見解は次のようになります:
def location_detail(request, pk=None):
エラーが発生します:
Reverse for views.location_detail with arguments '()' and keyword arguments '{u'pk': 1L}' not found.
私はDjango 1.5とpython 2.7.2を使用しています
ありがとう!