given the following
views.py
return redirect('order-review', order=order.id)
urls.py
url(r'^review/$', 'checkout.views.review', {'order': '0'}, name="order-review"),
aimed at
views.py
def review(request, order):
is there a really obvious fix? I just can't see what i've got wrong and the django docco is slightly light on examples when passing a variable through.