I am trying to pass a parameter to my view, but I keep getting this error:
NoReverseMatch at /pay/how Reverse for \'pay_summary\' with arguments \'(False,)\
To add to the accepted answer, in Django 2.0 the url syntax has changed:
path('/', views.myview, name='myname')
Or with regular expressions:
re_path(r'^(?P[0-9])/$', views.myview, name='myname')