Questions tagged [django-cms]

Django CMS is a versatile Django software that allows users to effortlessly organize and manage content across various languages and sites using a plugin-based system.

Error encountered in django-cms makemigrations process: Missing module 'packaging' for successful execution

Embarking on my journey with django-cms, I set out to install the CMS following the official documentation. After creating a virtual environment and installing Django and django-cms, I moved on to the next steps which involved using django-admin to create ...

Choosing a versatile model field in a Django CMS plugin

Currently, I am developing a Django CMS plugin that includes a model choice field dependent on another field in the form. To update the choices in the model choice field based on the trigger field selection, I am using AJAX. However, when submitting the fo ...

Steps to include cms.urls in sitemap.xml for my Django application

I have implemented the following code in my Django project. Within views.py: class MediatorViewSitemap(Sitemap): changefreq = 'monthly' priority = 0.8 def items(self): return Mediator.objects.exclude(photo='') ...