Skip to content

Commit

Permalink
fix: cmscontexts admin raw_fields
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Jul 23, 2021
1 parent e4225f0 commit ba03e18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_requirements(fname='requirements.txt'):

setup(
name="unicms",
version='0.23.1',
version='0.23.2',
description="uniCMS is a Django Web Content Management System",
long_description=README,
long_description_content_type='text/markdown',
Expand Down
1 change: 1 addition & 0 deletions src/cms/contexts/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class EditorialBoardEditorsAdmin(AbstractCreatedModifiedBy):
list_filter = ('permission', 'created', 'modified', 'is_active')
search_fields = ('user__first_name', 'user__last_name')
readonly_fields = ('created', 'modified')
raw_id_fields = ('user', 'webpath', )


class EditorialBoardLockUserAdminInline(admin.TabularInline):
Expand Down

0 comments on commit ba03e18

Please sign in to comment.