Django CMS is a Django application for managing hierarchical pages of content, possibly in multiple languages and/or on multiple sites. WWW: http://www.django-cms.org/ Documentation: http://docs.django-cms.org/ Github: https://github.com/divio/django-cms/

learn more… | top users | synonyms

-2
votes
0answers
19 views

Django - 1 website, 3 domains, 3 languages [closed]

First of all: Django 1.4, django-cms 2.3 What I have to do is to have 1 website, using 3 languages and each language has its own domain. I use URLs like: domain.com/en/contact , domain.com/es/contacto ...
0
votes
0answers
29 views

django 1.5 extend the default User model or substitute it

Env: Django 1.5.1 + Django CMS 2.4.1 + Zinnia latest + my custom apps + custom Django CMS plugin Basically I can extend the default Django (1.5.X) User model like Django Ribbit Tutorial on NetTuts+ ...
2
votes
0answers
24 views

Upgrading Django to 1.5 with Django-CMS - user model issue

I have just moved a site from Django-CMS 2.3.5 to 2.4.1 (with help from Stackoverflow) under Django 1.4. I am now upgrading to Django 1.5, which is only hard because I need to update the old separate ...
1
vote
1answer
40 views

Django-CMS pages all blank after upgrade from 2.3.5 to 2.4.1

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 ...
1
vote
0answers
33 views

How can I do a redirect from a plugin in Django CMS?

I have a form in a plugin that on submit I need to redirect to another page. What's the best way to accomplish this? So possible solutions are: Use an App-Hook Throw an exception in your plugin ...
0
votes
0answers
19 views

How to have multiple App-Hooks on a Django CMS Page?

Is it possible to have multiple App-Hooks attached to a single CMS page? From the interface it seems that I can only add one per page.
0
votes
1answer
15 views

Customising the Link plugin

I am currently building a multi-site Django website. I would like to be able to override the functionality of the base link plugin cms.plugins.link to be able to link to any other page within any of ...
0
votes
1answer
16 views

Django-cms Apphook url doesn't load

I have a django-cms project that contains an app called core. Inside core I created a file "cms_app.py" as follows: # -*- coding: utf8 -*- from cms.app_base import CMSApp from cms.apphook_pool import ...
0
votes
0answers
33 views

Change Django Filer upload_to

I want to upload images to media folder. But Filer by default uploads images to %Y/ %m /%d folders. I tried to change the FILER_STATICMEDIA_PREFIX but after changing the value, upload is not ...
0
votes
1answer
19 views

Django CMS: 2 pages with same slug, but different publication dates

Like the title says: I would like to have 2 different CMS pages with same slug, but a different publication date. E.g. Page 1 -> slug: sale -> pub date *till*: 12-12-2013 11:00:00 Page 2 -> ...
-1
votes
1answer
21 views

Using cycle to Django?

I am developing a Django application, i had some problem, I hope to do the following effects on Django, <div id='cssmenu'> <ul> <li class='active'><a ...
-1
votes
0answers
25 views

Django CMS NivoSlider Plugin not appearing when not logged in to site [closed]

I am creating a site using Django CMS which is awesome. However, I got a slider plugin which works a treat when I am logged in to the admin of the site, however, if I log out, the slider disappears ...
0
votes
0answers
21 views

Django-CMS link plugin comments, hidden text

I've added a text plugin to a CMS page and within this plugin I'm adding link plugins to various other pages. after i add a link it shows up as a blue orb like object within the text plugin. I'm ...
0
votes
1answer
38 views

Trigger a view before plugins are processed in Django-cms

I have a views.py in my django-cms application. Is there any way to trigger a method in that views.py and add stuff to the context before any plugins are processed?
2
votes
0answers
37 views

django-cms “summary view” aggregating content from multiple pages

Django==1.5.1 django-cms==2.4.1 I'd like to make something like a summary view from all the child pages of a selected page in django-cms, pulling out title, truncated content etc with a more... link ...
0
votes
1answer
19 views

Django-CMS how to pass different data to each plugin separately?

So I am querying a service that will give me back a bunch of data in JSON. I have 5 different plugins that will take particular parts of that JSON in order to render content in their template. I ...
-1
votes
0answers
22 views

What is causing AppAlreadyRegistered? [closed]

I cannot determine what is causing this error, [SiteUpdatesApphook] an cms app with this name is already registered. I had an app "site_updates" working just fine, but when I added a new app ...
0
votes
2answers
36 views

Make menu item not clickable in Django CMS

I have a Django application running using Django CMS. I am trying to make one specific submenu not clickable. The menu is like this: item1|item2|item3 sub_item3 sub_item3 ...
0
votes
1answer
112 views

Error importing middleware cms.middleware.multilingual: “No module named multilingual”

Whenever i runserver and go the admin page in my browser i get: A server error occurred. Please contact the administrator. and in Titanium Studio i see: Traceback (most recent call last): ...
1
vote
1answer
40 views

Django cms - Javascript “undefined” string alert error when trying to publish or unpublish page on page list

My project is a brand new installation of django-cms 2.4.1 running with MySQL. When I try to publish or unpublish a page through page list interface, it pops up a Javascript alert error with the ...
0
votes
1answer
55 views

Django Filer getting 'thumbnail' is not a valid tag library error to do with ImageChop

I have just installed Django-filer following the instructions on the Github page. I am running django 1.4.5 on python 2.7 Some parts of the Settings.py for my app: INSTALLED_APPS = ( ...
0
votes
0answers
29 views

django-cms eCommerce implement: apphook, plugin

I have a task to design an eCommerce solution for django-cms. The product must be multilingual (en, Fr). So I have an idea: create an app with product model just contain [price,name,images] then write ...
0
votes
0answers
23 views

Text plugin doesn't add to placeholder in admin

When I try to add text plugin the window pops up and it says "Language must be set to a supported language!". I can't figure out what is wrong. Here is all language-specific things in my settings: ...
-1
votes
0answers
18 views

Main page doesn't show up [closed]

I've created a page in admin, published it and it's marked as 'home' in pages admin. But it doesn't show up when I call '/' and when I use it's slug too. There is just standard django-cms page with ...
0
votes
0answers
35 views

Django - Django CMS: Need to prepend urls with parameter (regex)

its the first time that i try django and especially django-cms. I tried to solve the following task with no success: I need to use urls like the following: ...
0
votes
0answers
33 views

What is the minimal ammount of code I need for using django-cms-search 0.2.6?

I want to use django-cms-search in my project and have installed it together with xapian and the xapian_backend. In my settings file, I have defined HAYSTACK_SEARCH_ENGINE, HAYSTACK_SITECONF and ...
1
vote
1answer
46 views

Django-cms: Can't publish 2 pages with the same slug in different levels

I'm having an issue with slugs in child pages. Imagine I have a page called "Something" in the main tree with the slug "something", and another page named "Anything" with the slug "anything". This ...
0
votes
0answers
19 views

Can a page in Django-CMS contain multiple records?

I need to create pages on my (planned) website that each consist of multiple, independent entries records. (It's a famous quotes website - each page covers a specific topic, with multiple quotes and ...
0
votes
0answers
43 views

django-cms 404 errors when not logged in

I'm running django-cms 2.4.1 and I'm getting 404 not found errors when attempting to access any page (other than the root) when not logged in. Once I log in to the admin console, all pages are ...
0
votes
1answer
21 views

In Django CMS how can I separate navigation nodes without children from those with?

I have a complex navigation which I'm building with Django CMS. In the navigation, there are three levels of pages. When rendering the level 2 navigation, I'd like to first display all level 2 pages ...
0
votes
2answers
71 views

TinyMCE in django-cms

I'm trying to make django-cms use TinyMCE as the text editor instead of the default Wymedit. It should be an easy job according to the docs, but I just end up with an empty div instead of the editor ...
-4
votes
1answer
89 views

Django CMS - Articles show as None [closed]

Ive just install the Django CMS but each of the titles for the articles are showing as none ? Has anyone come across this before ? The install is the basic install using just a base and template_1 ...
1
vote
0answers
57 views

How to turn off I18N in django-cms 2.4.0?

Since upgrading to django-cms 2.4.0, it seems I cannot turn off I18N to remove the /en/ from the url. I have set USE_I18N = False and commented #'django.core.context_processors.i18n', and ...
0
votes
1answer
31 views

Install Django-CMS on a separate system user [closed]

I am new to Django CMS and Ubuntu. I would like to install Django-CMS on a separate system user on Ubuntu, so that my python environment dedicated to Django-CMS would not conflict with other python ...
3
votes
1answer
81 views

Django CMS Custom Plugin doesn't render the template

Running a fresh install of django-cms 2.4.0-RC1, django 1.5.1 and python 2.7. I'm trying to create a very simple custom plugin with a single field. The plugin registers in the admin and works fine. It ...
0
votes
1answer
60 views

django cms custom app page endless redirect

I am building a website using Django-cms and I code my own Django app (request_quote) The error I have is that when I try to access an url defined in request_quote.urls.py , it gets stuck in an ...
0
votes
0answers
35 views

How to create a custom menu that I can call seperately, like {% show_menu_custommenu %}

I am wanting to create a menu that will appear on all pages but in a different location than the main menu. It also needs to allow for external URL's. I am expecting to use something like # from ...
0
votes
2answers
74 views

django cms - resolving pages url by slug

Is it possible to resolve a page url by his its slug? Something like: from django.core.urlresolvers import reverse reverse('pages-details-by-slug',{slug:'my-page-slug'}) But I got: NameError: ...
0
votes
1answer
102 views

Installing django-cms on windows

Running pip install django===1.4 django-cms south on a windows machine, as per the instructions found here returns this error: Downloading/unpacking Django==1.4 Downloading Django-1.4.tar.gz ...
0
votes
0answers
28 views

Django-cms: setting a default ImageField file browser

Is that possible in django/djangocms to have a sort of default file finder/browser when users press button to browse for an ImageField? (without changing from ImageField to FilerImageField I mean)
1
vote
0answers
28 views

Multiple multilingual menus in Django-CMS with items rooted at /

I'm using Django-CMS 2.3.5 on Django 1.4.5 and Python 2.7.2. I have about 2 dozen pages which need to be presented in two or more menus in my base template. Currently I'm using a primary menu and a ...
1
vote
0answers
39 views

Multiple dialects of languages in Django-CMS

all, I'm attempting to create a multi-lingual website which must support (among others) both US-English and UK-English. My settings contains: LANGUAGES = ( ('de', u'Deutsch'), ('en_GB', ...
2
votes
1answer
67 views

Django escaping javascript when DEBUG = False

I'm having this weird error with a Django site which works fine with DEBUG = True but is breaking in some interesting ways when DEBUG = False. One possibly generic thing is that inline javascript in ...
0
votes
1answer
31 views

Replacing default admin display for adding Foreign Key for Page

I'm looking for a way to replace default display for Page Foreign Key in admin. Django cms is reading all pages and titles for pages and it's putting it in a select html tag. My problem is that I have ...
0
votes
1answer
29 views

STATIC_URL in django cms placeholder

I have a placeholder in my template: {% placeholder slider_content %} Is it possible to access {{ STATIC_URL }} when editing placeholder content in admin like this: <img src="{{ STATIC_URL ...
0
votes
1answer
50 views

Navigation Nodes in django-cms example

Can you give me an example how can i use Navigation Nodes? Cannot find examples in documentation. There is this {{ node }} but where is it coming from? Particalarly i am intereisted in {{ ...
0
votes
2answers
46 views

Strip default CSS from Django CMS

I noticed that the text rendered by Django CMS' text plug-in is hard-coded with its own CSS, the p tags in particular. Is there a way to remove this styling? I want the text to inherit the style ...
0
votes
0answers
52 views

Django-CMS test - register app

I have a function to build some skeleton of CMS in my tests: def create_base_cms_structure(): from cms.api import create_page from cms.utils.conf import get_cms_setting superuser = ...
0
votes
1answer
36 views

How can I load a .po file downloaded from Transifex to my Django-CMS project?

I installed Django-CMS, everything is fine and sweet. Now I want to have the french translation of the cmsplugin-blog and I discover through this link ...
0
votes
1answer
27 views

Remove pages from sitemap

I'm using the Django Cms 2.3.5 and I was generating the sitemap like this article from the docs Now my question is there a easy solution to hide two pages from this sitemap because. I have the 404 ...

1 2 3 4 5 7