You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
was searching for QuoteBlock under coderedcms.content_blocks as shown in the docs. Found it in coderedcms.blocks.html_blocks. Do this docs need to be updated?
The text was updated successfully, but these errors were encountered:
Context: I'm adding coderedcms to an existing project. I can't find any documentation on how to do it. Some challenges I faced on the way:
had to install wagtail-seo and add wagtailseo to the INSTALLED_APPS in django settings.
Was getting NoReverseMatch at /cms/settings/coderedcms/layoutsettings/2/ Reverse for 'import_index' not found. 'import_index' is not a valid view function or pattern name. error. Solved by adding from coderedcms.admin_urls import urlpatterns as coderedcms_urls to my project's urls.py and including *coderedcms_urls, in the urlpatterns.
Please let me know if I missed any documentation or could do anything better here. :)
Hello,
was searching for
QuoteBlock
undercoderedcms.content_blocks
as shown in the docs. Found it incoderedcms.blocks.html_blocks
. Do this docs need to be updated?The text was updated successfully, but these errors were encountered: