Export a Django CMS page or a model view to a DOCX document
Project description
1 Django CMS Export Page
- Version:
0.1.0
- Source:
- Keywords:
django cms export docx
- PythonVersion:
3.4
Export a Django CMS page or a model view to a DOCX document
2 Features
Adds a menu entry in the CMS toolbar to export the current page
Ability to export a custom model, including placeholder fields
3 Installation
3.1 Requirements
Python 3.4 or above
setuptools 30.3.0 or above
Django 1.11 or above
Django CMS 3.4.6 or above
3.2 Install
pip install djangocms-export-page
4 Usage
In your Django settings:
INSTALLED_APPS = [
...
'djangocms_export_page',
...
]
4.1 CMS Page
CMS Page don’t need any extra configuration to work.
If a Plugin has a ForeignKey that would behave like children, add the following to the CMSPlugin model class:
_export_page = {
'children': 'items'
}
where items is a iterable attribute of the model class.
And for on the ForeignKey Django model class:
_export_page = {
'fields': ['name', ... ]
}
4.2 Django Model
If you need to export a Django model included in a AppHook, add the following to the model class:
_export_page = {
'sections': [{
'name': 'Meta',
'fields': ['title', ... ]
}, {
'name': 'Body',
'fields': ['content']
}],
}
It’s better to put the PlaceholderField (here content) in a separate section.
4.3 Static Placeholders
If you also want to export the static placeholders of a page, some extra configuration is required. There is a setting called EXPORT_STATIC_PLACEHOLDERS.
EXPORT_STATIC_PLACEHOLDERS = {
'template_name': ['static_placeholder_code']
}
So with the cms settings it will look like this:
# test.html
<div>
{% static_placeholder 'test-placeholder' %}
</div>
# settings.py
CMS_TEMPLATES = [
('test.html', _('Test page')),
]
EXPORT_STATIC_PLACEHOLDERS = {
'test.html': ['test-placeholder']
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for djangocms-export-page-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | af8a9b3b8003a043f6914713682a2950b8e3b4bddddcc81c02fcb61da3cbcdc7 |
|
MD5 | d615a05e779c08f7e190c7f178add4a8 |
|
BLAKE2b-256 | 583274018c502e94acacea8f01e2df9968377fdb32687e52a7170fa7a9460baa |
Hashes for djangocms_export_page-0.1.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f72270caf9f49abf65e876ec56a8c1512b251ab9805d9f801e79f7d5bfea318 |
|
MD5 | 3f86493c20763379ae4ffc06fbc1a277 |
|
BLAKE2b-256 | 4f7bcfa2835842e03e26d6e1d157c9a6a39dd89ba4e166c86e6c8a1bd86c8289 |