showing 10 results of 10
Technical articles
Seamlessly Integrating React with Django CMS: A Modern Approach
Django CMS has long been the go-to choice for content management in Django applications, providing powerful editorial tools and flexible page structures. However, as web applications become increasingly interactive, developers often find themselves needing the dynamic capabilities of React within their CMS-managed pages.
Technical articles
Enhancing Django Models with Versioning Using Django CMS Versioning
Tracking the evolution of content is indispensable to manage changes efficiently, roll back to prior versions when necessary, and handle drafts with ease. Here's how you can use django CMS' capabilities as a developer.
Technical articles
Utilising caching in your applications
While django-cms takes care of caching pages, placeholders and plugins, sometimes you need to integrate your own applications. So you might need to consider how efficient your queries are. When writing a django application, minimising the number of database queries you make is a significant step towards an efficient system. A fast & efficient system will provide a better experience to users.