10000 fix: Allow lazy wizard initialization by fsbraun · Pull Request #8267 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

fix: Allow lazy wizard initialization #8267

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 9 commits into from
Jun 28, 2025
Prev Previous commit
Next Next commit
fix: Grouper admin raised AttributeError when used outside the admin …
…views (#8067)

* Fix: GrouperModelAdmin raised an AttributeError if used outside the admin app

* Fixed: Page.__str__ returns page title with admin_manager

* feat: Format `Page.__str__` as "My title (/path/to/page/)"

* Update tests for new str method of Page

* Simplify str

---------

Co-authored-by: Github Release Action <info@django-cms.org>
Co-authored-by: Vinit Kumar <mail@vinitkumar.me>
  • Loading branch information
3 people committed Jun 28, 2025
commit e6adb8e786ccfc5048db0450dfba10868392d7ee
1 change: 1 addition & 0 deletions cms/admin/pageadmin.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ class PageAdmin(admin.ModelAdmin):
copy_form = CopyPageForm
move_form = MovePageForm
inlines = PERMISSION_ADMIN_INLINES
title_frontend_editable_fields = ['title', 'menu_title', 'page_title']
search_fields = ('=id', 'urls__slug', 'pagecontent_set__title', 'reverse_id')

def has_add_permission(self, request):
Expand Down
Loading
0