Reputation: 1641
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
Reputation: 3198
Go into cms pages admin list, you will see some colored dots...:
and check settings.py:
CMS_LANGUAGES = (
('fr', gettext('French')),
('de', gettext('German')),
('en', gettext('English')),
)
Upvotes: 1