8000 Fix documentation bug regarding CMSPluginBase by seppeljordan · Pull Request #6744 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

Fix documentation bug regarding CMSPluginBase #6744

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

Merged
merged 2 commits into from
Nov 7, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
8000 Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix documentation bug regarding CMSPluginBase
The documentation advertises that you can set the module attribute of
custom plugins to None.  If the user attempts this django they won't be able
to start up when django.contrib.admin.site.urls is included in urls.py
(tested with django 1.11.25 and django-cms 3.7.0).
  • Loading branch information
Sebastian Jordan committed Oct 8, 2019
commit cc0481571e46b30c6264e28ef0d798fcb5ee943d
5 changes: 3 additions & 2 deletions docs/reference/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,9 @@ CMSPluginBase Attributes and Methods Reference

.. attribute:: module

Will group the plugin in the plugin picker. If module is ``None``,
plugin is listed in the "Generic" group.
Will group the plugin in the plugin picker. If the module
attribute is not provided plugin is listed in the "Generic"
group.


.. attribute:: name
Expand Down
0