diff options
| author | Chris Beaven <smileychris@gmail.com> | 2012-05-18 11:04:13 +1200 |
|---|---|---|
| committer | Chris Beaven <smileychris@gmail.com> | 2012-05-18 11:04:13 +1200 |
| commit | 7495730d32498c7ee8113e190ece98ab3ce45a30 (patch) | |
| tree | 16c19ec8dc2a05cfeb6a3abfa95e31c3e850949f | |
| parent | 4774875896dec4098dba2981d562bd74e75c463f (diff) | |
| parent | c23d306df83d226b4f3b5b852ec9fb22be12c61e (diff) | |
Small change to a template in the FormWizard docs
Specifically, the template was referred to as a "full example template"
but didn't {% load i18n %} even though {% trans %} was used.
| -rw-r--r-- | docs/ref/contrib/formtools/form-wizard.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/ref/contrib/formtools/form-wizard.txt b/docs/ref/contrib/formtools/form-wizard.txt index a3d9673db9..7aafbe89f3 100644 --- a/docs/ref/contrib/formtools/form-wizard.txt +++ b/docs/ref/contrib/formtools/form-wizard.txt @@ -186,6 +186,7 @@ Here's a full example template: .. code-block:: html+django {% extends "base.html" %} + {% load i18n %} {% block head %} {{ wizard.form.media }} |
