Translatable flatpages
Project description
Translatable version of django.contrib.flatpages with basic menu support.
Requirements
Django
South
django_modeltranslation
django_mptt
Tested on Django 1.4.5.
Installation
Install python library using pip: pip install django-flatpages-i18n
Add south, mptt, modeltranslation and flatpages_i18n to INSTALLED_APPS in your Django settings file
Add flatpages_i18n.middleware.FlatpageFallbackMiddleware to MIDDLEWARE_CLASSES in your Django settings file
Specify desired languages in your Django settings file:
from django.utils.translation import gettext LANGUAGE_CODE = 'en' LANGUAGES = ( ('en', gettext('English')), ('de', gettext('German')), )
Sync and migrate your database
Run sync_translation_fields and update_translation_fields commands (from modeltranslation app)
If you want to use Redactor WYSIWYG editor (see settings below), you need to add 'flatpages_i18n.urls' to your urls.py:
if 'flatpages_i18n' in settings.INSTALLED_APPS: urlpatterns += i18n_patterns('', url(r'^', include('flatpages_i18n.urls')), )
Usage
To get all flatpages:
In your HTML template:
{% load i18n flatpages_i18n %} {% get_available_languages as LANGUAGES %} {% get_flatpages_i18n as flatpages_i18n %} <ul> {% for flatpage in flatpages_i18n %} <li><a href="/{{ LANGUAGE_CODE }}{{ flatpage.url }}">{{ flatpage.title }}</a></li> {% endfor %} </ul>
To get flatpage by its PK:
{% get_flatpage_i18n 123 as my_flatpage %} {{ my_flatpage.content }}
or by its machine_name:
{% get_flatpage_i18n 'my-flatpage' as my_flatpage %}
Settings
- FLATPAGES_EDITOR
If you wish to use Redactor as WYSIWYG editor, set it to 'REDACTOR'. Default: None.
- FLATPAGES_REDACTOR_JS
Path to Redactor .js file. Default: 'js/redactor/redactor.js'.
- FLATPAGES_REDACTOR_CSS
Path to Redactor .css file. Default: 'css/redactor/redactor.css'.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-flatpages-i18n-0.4.1.tar.gz
.
File metadata
- Download URL: django-flatpages-i18n-0.4.1.tar.gz
- Upload date:
- Size: 103.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f293ca3c0eb5203b888f8e810bf696e249578e2944617127e136d2844871ee1 |
|
MD5 | b82a02a758f5204cf51207cbfdaff781 |
|
BLAKE2b-256 | 545ca22f742058f71d83194c897b4aed4883cd350b572c0f54583a819b140eee |