Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/berkalpyakici/wagtail-import-export-tool
Import/Export tool for Wagtail CMS (built on top of Django), that supports pages, images, documents, and snippets.
https://github.com/berkalpyakici/wagtail-import-export-tool
django python python3 wagtail
Last synced: 7 days ago
JSON representation
Import/Export tool for Wagtail CMS (built on top of Django), that supports pages, images, documents, and snippets.
- Host: GitHub
- URL: https://github.com/berkalpyakici/wagtail-import-export-tool
- Owner: berkalpyakici
- License: bsd-3-clause
- Created: 2019-06-20T21:10:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-03T21:04:25.000Z (over 5 years ago)
- Last Synced: 2024-09-17T18:35:16.535Z (about 2 months ago)
- Topics: django, python, python3, wagtail
- Language: Python
- Size: 47.9 KB
- Stars: 12
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-wagtail - Wagtail Import/Export Tool - Refactor of [Wagtail Import Export](https://github.com/torchbox/wagtail-import-export). This tool supports importing/exporting images, documents, and snippets that are used on imported/exported pages. (Apps / Content Management)
README
# Wagtail Import/Export Tool
Import/Export tool for Wagtail CMS (built on top of Django), that supports pages, images, documents, and snippets.## Installation
Install `wagtail-import-export-tool` using PIP.
```
pip install wagtail-import-export-tool
```Add `wagtailimportexport` to your Django project settings.
```
INSTALLED_APPS = [
...
'wagtailimportexport',
...
]
```## Config
App settings can be found in `wagtailimportexport/config.py` file.## Known Limitations
* Page models should be consistent across both source and destination environments. Otherwise, importing may fail due to mismatching fields.
* Exporting snippets is not implemented yet.## Credits
This project is based on [torchbox/wagtail-import-export](https://github.com/torchbox/wagtail-import-export). Because they use the same Django application name, both cannot be used on the same project at the same time.