A lighter admin for wagtail
Project description
Features
This app customises the wagtail admin as follows:
Rich text
Some of the less useful features are removed (HR, undo/redo, H4, H5). Headings/paragraph come first (though https://stackoverflow.com/questions/10773813/adding-something-to-the-top-of-a-json-object). The active state of the rich text (.expand) does not expand anymore
Publication flow
The “submit for moderation” is hidden (it’s mostly confusing for the type of clients we have).
Provides a LinkBlock
It had the same UI as when you insrt a link in a RichText but has the advantage of being avialable out of it.
In case you are using this block to replace a PageChooserBlock you can also use the pagechooser_fallback template tag. The PageChooserBlock initially only saves the pk of the page you want to link to. This templatetag gets the corresponding page and extracts the URL and the pagetitle from it to try and display what you would expect. A similar logic is used to try and keep the page the editor initially picked on the admin side.
Install & setup
pip install wagtail_lightadmin
Add wagtail_lightadmin to your installed apps.
Tell Wagtail to use the light rich text widget in your settings_default.py:
WAGTAILADMIN_RICH_TEXT_EDITORS = { 'default': { 'WIDGET': 'wagtail.wagtailadmin.rich_text.HalloRichTextArea', 'OPTIONS': { 'plugins': { 'halloheadings': {'formatBlocks': ['p', 'h2', 'h3']}, 'halloformat': {}, 'hallolists': {}, 'hallowagtaillink': {}, 'hallorequireparagraphs': {}, 'hallowagtailembeds': {}, 'hallowagtailimage': {}, 'hallowagtaildoclink': {}, }, } }, }
Make sure django knows about the new static files
manage.py collectstatic –no-input
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 wagtail_lightadmin-0.12.1.tar.gz
.
File metadata
- Download URL: wagtail_lightadmin-0.12.1.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a01affa3546e01fd4c4cfbbb338bb22861bc5c963b4f1c001af20f48412811bf |
|
MD5 | f3c63364a11bac63d7a5a5830d522e78 |
|
BLAKE2b-256 | d86a372d441800779fe838878945a72c4f63240886af3aea2ed26cd6b1ebb65a |