django-cms Questions

2

Solved

I am running Django on a local Vagrant arch machine on a Win7 host. I set up my environment variables from Django in a .env file. In my app all static files are served correctly and everything work...
Skull asked 5/4, 2017 at 7:41

7

Solved

I use: DjangoCMS 2.4 Django 1.5.1 Python 2.7.3 I would like to check if my placeholder is empty. <div> {% placeholder "my_placeholder" or %} {% endplaceholder %} </div> I don't...
Pahari asked 17/6, 2013 at 12:40

5

Solved

How can I translate the application label in the Django CMS admin? See the screenshot:
Velvetvelveteen asked 3/10, 2013 at 20:27

19

Solved

I'm building a fairly simple application, research, in my Django project that uses Django-CMS. (It's my first ground-up attempt at a project/application.) Its main purpose is to store various intel...
Kudos asked 10/9, 2014 at 17:42

1

My Model: class Pattern(models.Model): name = CICharField("Pattern Name", max_length=200, unique=True) symptoms = models.ManyToManyField(Symptom, through='PatternSymptom', related_name=...
Kasandrakasevich asked 23/10, 2022 at 21:0

3

Solved

Encounter an error when using djangocms publishing page changes. when I ran tail -f /var/log/apache2/error.log, it returned: treebeard.exceptions.NodeAlreadySaved: Attempted to add a tree node that...
Colony asked 24/3, 2021 at 8:6

2

Solved

I have installed a vanilla django-cms on a new server. I installed all requirements. It all went fine, up untill the point where I wanted to migrate to the database (Postgres). So this is what I di...
Mendelism asked 15/12, 2021 at 12:55

2

Solved

I had a working DjangoCMS application running DjangoCMS 3.7.1 and Django 2.2, however after I just bumped the DjangoCMS version to 3.7.2 and with it, Django to 3.0.1, I am now getting a render erro...
Gomorrah asked 27/4, 2020 at 4:25

2

Solved

I am searching for a way to display my Django-CMS site name in a template. I created a basic Django-CMS site following this guide. The default site is named Example.com and I was able to change th...
Naval asked 25/3, 2017 at 21:42

3

Solved

I'm adding a new site to a server which already has Django & Django-CMS installed. How can I detect the version number of the installed Django-CMS? Thanks!
Heads asked 6/10, 2012 at 22:14

3

Solved

Hi I am getting this error, while I tried make a simple app. NameError at /first/ global name 'render_to_response' is not defined Request Method: GET Request URL: http://localhost:8000/first/?pr...
Exclave asked 31/3, 2011 at 19:52

2

I'm trying to use custom user model with Django CMS. I created new users app with this model: users.models: from django.db import models from django.contrib.auth.models import AbstractUser clas...
Androsphinx asked 1/8, 2016 at 14:15

3

Solved

I created a Boilerplate project from the Divio Django project template: (Python 3.6, Django CMS, HTML 5) Checking out the repository returns a couple of files, among which are a docker-compose and...
Turd asked 8/4, 2019 at 18:24

1

Solved

Edit: found out this happens on a very basic project generated by djangocms-installer, I've reported an issue about this. I've setup a simple project with django-cms and my client's native languag...
Arciniega asked 25/1, 2015 at 19:52

2

Solved

I am using Django 1.4.3 and have several sites built using Django-CMS 2.3.5. I want to upgrade them to Django-CMS 2.4.1, so that I can then start to move to Django 1.5. When I type ./manage runser...
Bonilla asked 16/5, 2013 at 2:53

6

Solved

Our DjangoCMS site is accessible via http and https. Anonymous usage via http is ok. But I want to disable logins via http. Is there a way to force the usage of https as soon as the user wants to...
Labiche asked 16/10, 2017 at 10:57

1

Solved

For example, say I am working on a FAQ page locally. I create whatever plugins/templates etc I need. Then, locally, I proceed to add the plugins to the page, debug, modify whatever. Now it comes ti...
Coralyn asked 2/10, 2017 at 23:9

4

Solved

I have followed the tutorial to make a new Django-CMS (2.4) site. I am only using a single language (English). There is an automatic redirect to include the language identifier '/en/' in my site's...
Pearse asked 31/7, 2013 at 1:4

3

Solved

Supposedly a trivial task to server 403/404/500 error pages when using django-cms. Followed instructions on an old forum post to create this: from cms.views import details def custom_404(request)...
Vesper asked 30/9, 2013 at 9:5

2

I am interested in combining django-cms for content management and django oscar for e-commerce. Can someone give me some direction, preferably someone that has already successfully combined the tw...
Anaphylaxis asked 4/3, 2016 at 23:50

1

I need to integrate Django-CMS 3.x into an existing project (mypjc hereafter). I already checked this question (and other similar) but they point to a tutorial page that is no longer available. I'...
Sicular asked 13/10, 2016 at 13:19

3

I am creating a django-cms site for a client. I would like to do something like: <body style="background-image:url({% placeholder background-image %});"> The desired effect is to have a pl...
Stevestevedore asked 19/7, 2013 at 19:46

4

Solved

I'm still relatively new to Django and have just started poking around at Django-CMS, however, I can't get past the basic introduction from the official docs. My problem may be related to sekizai,...
Marquita asked 18/12, 2011 at 6:50

5

Solved

I would like to add some extra fields to pages in django-cms (in django admin panel). How do this in the simplest way?
Footstone asked 24/4, 2012 at 7:35

4

Solved

I am using Django CMS 2.1.0.beta3 and am encountering a problem. I need to have access to all the pages in a variable so that I can loop through them and create my navigation menu using a for loop....
Dexterdexterity asked 7/12, 2010 at 1:56

© 2022 - 2024 — McMap. All rights reserved.