Is there any way to set the different CKEditor toolbar settings for the Django Admin Panel with django-ckeditor.
My toolbar settings in settings.py looks as below
'toolbar_Custom': [
['Format', 'Bold', 'Italic', 'Link', 'NumberedList', 'BulletedList', 'Table', 'HorizontalRule', 'Image', 'Youtube', 'Smiley',
'Undo', 'Redo', 'Preview', 'Source'],
],
I want to set just ['Format', 'Bold', 'Italic', 'Link', 'Undo', 'Redo'] for non-admin pages.