A filerobot image editing widget for Wagtail Image fields.
Project description
filerobot
A wagtail widget to add filerobot image editor to your wagtail fields.
Quick start
-
Add 'filerobot' to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ..., 'filerobot', ]
-
Import and use the widget on your model
import filerobot class HomePage(Page): content_panels = [ FieldPanel('image', widget=FileRobotWidget( tabs=[ "Finetune", "Filters", "Adjust", # "Watermark", "Annotate", # "Resize", ], # ... check init method and filerobot docs )), ] image = models.ForeignKey( "wagtailimages.Image", )
-
Add the URLs to your urls.py
from django.urls import path, include urlpatterns = [ path('filerobot/', include('filerobot.urls')), ]
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
wagtail-filerobot-1.0.5.tar.gz
(312.2 kB
view hashes)