以下のエラーが表示されます。
Caught NoReverseMatch while rendering: Reverse for 'satchless-checkout-prepare-order' with arguments '()' and keyword arguments '{}' not found.
しかしsatchless.contrib.checkout.common
、インストール済みのアプリにはあります。内satchless.contrib.checkout.common
には、urls.py
以下を含む があります。
from django.conf.urls.defaults import patterns, url
from .views import confirmation, prepare_order, reactivate_order
urlpatterns = patterns('',
url(r'^prepare/$', prepare_order, {'typ': 'satchless_cart'},
name='satchless-checkout-prepare-order'),
url(r'^(?P<order_token>\w+)/confirmation/$', confirmation,
name='satchless-checkout-confirmation'),
url(r'^(?P<order_token>\w+)/reactivate/$', reactivate_order,
name='satchless-checkout-reactivate-order'),
)
{% url satchless-checkout-prepare-order %}
テンプレートから呼び出すことができないのはなぜですか?