Changeset 7267
- Timestamp:
- 03/17/08 12:26:02 (6 months ago)
- Files:
-
- django/trunk/docs/form_wizard.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/form_wizard.txt
r7266 r7267 147 147 that you'll need to run this through the ``safe`` template filter, to 148 148 prevent auto-escaping, because it's raw HTML. 149 150 It will also be passed any objects in ``extra_context``, which is a dictionary 151 you can specify that contains extra values to add to the context. You can 152 specify it in two ways: 153 154 * Set the ``extra_context`` attribute on your ``FormWizard`` subclass to a 155 dictionary. 156 157 * Pass ``extra_context`` as extra parameters in the URLconf. 149 158 150 159 Here's a full example template::
