Fixed #17150 -- Made NamedUrlWizardView.url_name available in the template context. Thanks to Bradley Ayers for the suggestion and to Stephan Jaekel for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17232 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
@@ -28,6 +28,8 @@ class NamedWizardTests(object):
|
||||
self.assertEqual(wizard['steps'].prev, None)
|
||||
self.assertEqual(wizard['steps'].next, 'form2')
|
||||
self.assertEqual(wizard['steps'].count, 4)
|
||||
self.assertEqual(wizard['url_name'], self.wizard_urlname)
|
||||
|
||||
|
||||
def test_initial_call_with_params(self):
|
||||
get_params = {'getvar1': 'getval1', 'getvar2': 'getval2'}
|
||||
|
||||
Reference in New Issue
Block a user