0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 13:10:14 +01:00
wagtail/docs/reference/panel_api.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
834 B
Markdown
Raw Normal View History

2022-04-21 19:24:19 +02:00
# Panel API
```{eval-rst}
.. module:: wagtail.admin.panels
```
2022-04-21 19:24:19 +02:00
## `Panel`
2022-04-21 19:24:19 +02:00
```{eval-rst}
2022-04-21 19:24:19 +02:00
.. autoclass:: Panel
.. automethod:: bind_to_model
.. automethod:: on_model_bound
.. automethod:: clone
.. automethod:: clone_kwargs
.. automethod:: get_form_options
.. automethod:: get_form_class
.. automethod:: get_bound_panel
.. autoproperty:: clean_name
```
2022-04-21 19:24:19 +02:00
## `BoundPanel`
```{eval-rst}
2022-04-21 19:24:19 +02:00
.. autoclass:: wagtail.admin.panels.Panel.BoundPanel
In addition to the standard template component functionality (see :ref:`creating_template_components`), this provides the following attributes and methods:
2022-04-21 19:24:19 +02:00
.. autoattribute:: panel
.. autoattribute:: instance
.. autoattribute:: request
.. autoattribute:: form
.. autoattribute:: prefix
2022-04-21 19:24:19 +02:00
.. automethod:: id_for_label
.. automethod:: is_shown
```