#8721 closed (fixed)
Two typos in /documentation/form_preview/
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
On "How to use FormPreview", 3rd step, the code snippet imports "SomeModel", and then mistakenly refers to "SomeModelFormPreview(SomeModelForm))".
Here is the current text in the documentation:
3. Change your URLconf to point to an instance of your FormPreview subclass: from myapp.preview import SomeModelFormPreview from myapp.models import SomeModel from django import forms …and add the following line to the appropriate model in your URLconf: (r'^post/$', SomeModelFormPreview(SomeModelForm)), where SomeModelForm is a Form or ModelForm class for the model.
Also, on "FormPreview templates", a template is referenced using slash-notation and then using dot-notation. Probably should be slash for both.
By default, the form is rendered via the template formtools/form.html, and the preview page is rendered via the template formtools.preview.html.
Change History (3)
comment:1 by , 16 years ago
milestone: | → 1.0 |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [8753]) Fixed #8721: Clarification in docs for form previews