Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#8721 closed (fixed)

Two typos in /documentation/form_preview/

Reported by: Rodolfo <rhcarvalho@…> 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 anonymous, 16 years ago

milestone: 1.0
Triage Stage: UnreviewedAccepted

comment:2 by James Bennett, 16 years ago

Resolution: fixed
Status: newclosed

(In [8753]) Fixed #8721: Clarification in docs for form previews

comment:3 by Jacob, 13 years ago

milestone: 1.0

Milestone 1.0 deleted

Note: See TracTickets for help on using tickets.
Back to Top