From 7f90c56232d15e0c347c3256bfa42598aa2efc01 Mon Sep 17 00:00:00 2001 From: Ian Lee Date: Mon, 23 Feb 2015 20:14:46 -0800 Subject: [PATCH] Added missing backtick --- docs/wizard.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wizard.rst b/docs/wizard.rst index c5c6967..78c5bbb 100644 --- a/docs/wizard.rst +++ b/docs/wizard.rst @@ -314,7 +314,7 @@ The ``urls.py`` file would contain something like:: url(r'^checkout/$', OrderWizard.as_view(FORMS, condition_dict={'cc': pay_by_credit_card})), ] -The ``condition_dict`` can be passed as attribute for the ``as_view()` +The ``condition_dict`` can be passed as attribute for the ``as_view()`` method or as a class attribute named ``condition_dict``:: class OrderWizard(WizardView):