Vijesh Venugopal
Vijesh Venugopal

Reputation: 1641

Apphooks in django cms 3

I'm using django cms 3 for my new project and i have used apphook for a django cms page. As the project having Arabic and English version, the corresponding page gets published only in a single language, not in both. How to make the page get published in both versions. Any help is much appreciated. Thanks in advance.

Upvotes: 0

Views: 122

Answers (1)

grigno
grigno

Reputation: 3198

Go into cms pages admin list, you will see some colored dots...:

enter image description here

and check settings.py:

CMS_LANGUAGES = (
    ('fr', gettext('French')),
    ('de', gettext('German')),
    ('en', gettext('English')),
)

Upvotes: 1

Related Questions