Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add chapter on relations from mastering plone (slighty updated) #1290

Merged
merged 10 commits into from
Sep 17, 2022
Binary file added docs/_static/inspect-relations.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/relation_select.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/relationlist_searchmode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/relationliste_ajax.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/relations_with_selectwidget.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 13 additions & 4 deletions docs/backend/behaviors.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
---
myst:
html_meta:
"description": ""
"property=og:description": ""
"property=og:title": ""
"keywords": ""
"description": "Behaviors are re-usable bundles of functionality that can be enabled or disabled on a per-content type basis."
"property=og:description": "Behaviors are re-usable bundles of functionality that can be enabled or disabled on a per-content type basis."
"property=og:title": "Behaviors"
"keywords": "Behaviors"
---

(backend-behaviors-label)=

# Behaviors


```{seealso}
See the chapter {ref}`training:behaviors1-label` from the Mastering Plone 6 Training.
```

```{todo}
Contribute to this documentation!
See issue [Backend > Behaviors needs content](https://github.com/plone/documentation/issues/1302).
```
18 changes: 13 additions & 5 deletions docs/backend/content-types.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
---
myst:
html_meta:
"description": ""
"property=og:description": ""
"property=og:title": ""
"keywords": ""
"description": "A content type is a kind of object that can store information and is editable by users."
"property=og:description": "A content type is a kind of object that can store information and is editable by users."
"property=og:title": "Content Types"
"keywords": "Content Types"
---

(backend-content-types-label)=

# Content Types

```{seealso}
See the chapter {ref}`training:dexterity1-label` from the Mastering Plone 6 Training.
```

```{todo}
Contribute to this documentation!
See issue [Backend > Content Types needs content](https://github.com/plone/documentation/issues/1303).
```

```{todo}
Describe how to add a content type (Python/XML) including FTI settings.
Fields, Widgets, Vocabularies aso are descripted in detail in there own chapter and will be referenced frome examples here.
Fields, Widgets, Vocabularies aso are descripted in detail in their own chapter and will be referenced frome examples here.
```
9 changes: 9 additions & 0 deletions docs/backend/control-panels.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,13 @@ To manually register a view as a control panel, add the following registration t
<permission>Manage portal</permission>
</configlet>
</object>
```

```{seealso}
See the chapter {ref}`training:controlpanel-label` from the Mastering Plone 6 Training.
```

```{todo}
Contribute to this documentation!
See issue [Backend > Control Panels needs content](https://github.com/plone/documentation/issues/1304).
```
15 changes: 11 additions & 4 deletions docs/backend/fields.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
---
myst:
html_meta:
"description": ""
"property=og:description": ""
"property=og:title": ""
"keywords": ""
"description": "Fields are objects that have properties and types, and comprise a schema."
"property=og:description": "Fields are objects that have properties and types, and comprise a schema."
"property=og:title": "Fields"
"keywords": "Fields, schema, autoform, supermodel, XML"
---

(backend-fields-label)=

# Fields

```{seealso}
See the chapter {ref}`training:dexterity-reference-label` from the Mastering Plone 6 Training.
```

```{todo}
Contribute to this documentation!
See issue [Backend > Fields needs content](https://github.com/plone/documentation/issues/1305).
```

(backend-fields-schema-label)=

Expand Down
1 change: 1 addition & 0 deletions docs/backend/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ behaviors
annotations
vocabularies
fields
relations
widgets
global-utils
portal-actions
Expand Down
Loading