Skip to content

Commit 3c1a8e0

Browse files
committed
improve classic-ui forms chapter
1 parent 6c9b643 commit 3c1a8e0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/classic-ui/forms.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@ Fields, Widgets, Vocabularies aso are descripted in detail in there own chapter
1717
```
1818

1919

20-
Plone uses the [z3c.form](http://pythonhosted.org/z3c.form) library to build its web-forms.
20+
Plone uses the [z3c.form](http://pythonhosted.org/z3c.form) library to build its web-forms.
2121
The package responsible for integrating with Plone is [plone.z3cform](http://pypi.python.org/pypi/plone.z3cform).
2222

2323
To simplify the process of organizing a form and specifying its widgets and fields, Plone utilizes [plone.autoform](http://pypi.python.org/pypi/plone.autoform), in particular its `AutoExtensibleForm` base class.
2424
It is responsible for handling form hints and configuring z3c.form widgets and groups (fieldsets).
2525

26-
A form is a view that utilizes these libraries.
26+
A form is a view that utilizes these libraries.
2727
plone.autoform offers useful base classes for views that simplify the process of creating forms based on either the form schema or {ref}`Dexterity behaviors <backend-behaviors-label>`.
2828

2929

3030
(classic-ui-forms-general-forms-label)=
3131
## General forms
3232

33-
The plonecli provides you with an option to add a form to your Plone package.
34-
33+
The {term}`plonecli` provides you with an option to add a form to your Plone package.
34+
Given you have created an addon package with {term}`plonecli` called `collective.awesomeaddon`.
3535

3636
```shell
3737
cd collective.awesomeaddon
3838
plonecli add form
3939
```
4040

41-
After using the `plonecli` to add a form, there is a new sub folder `forms` in your package.
41+
After using the {term}`plonecli` to add a form, there is a new sub folder `forms` in your package.
4242
Here we will find a `configure.zcml` containing the registration of the form,
4343

4444
```xml

0 commit comments

Comments
 (0)