Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

wagtailsvg

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wagtailsvg

Wagtail SVG

pipPyPI
Version
0.0.37
Maintainers
1

Wagtail SVG

.. image:: https://img.shields.io/pypi/v/wagtailsvg :target: https://pypi.org/project/wagtailsvg/

.. image:: https://img.shields.io/pypi/pyversions/wagtailsvg :target: https://pypi.org/project/wagtailsvg/

Wagtail <https://github.com/wagtail/wagtail>_ + SVG <https://developer.mozilla.org/docs/Web/SVG>_ = 🚀

SVG for Wagtail with :

  • Svg : Model
  • SvgChooserPanel : ChooserPanel for ForeignKey
  • SvgChooserBlock : ChooserBlock for StreamField

Can be used like this :

.. code-block:: python

from wagtailsvg.models import Svg
from wagtailsvg.blocks import SvgChooserBlock
from wagtailsvg.edit_handlers import SvgChooserPanel


class TestPage(Page):
    logo = models.ForeignKey(
        Svg,
        related_name='+',
        null=True,
        blank=True,
        on_delete=models.SET_NULL
    )
    body = StreamField([
        ('svg', SvgChooserBlock()),
    ], blank=True)

    content_panels = Page.content_panels + [
        SvgChooserPanel('logo'),
        StreamFieldPanel('body'),
    ]

Setup

Install with pip :

pip install wagtailsvg

Add these to django apps installed :

.. code-block:: python

INSTALLED_APPS = [
    'wagtailsvg',
    'wagtail.contrib.modeladmin',
    'generic_chooser',
    ...
]

Set the SVG download folder in the Django settings

.. code-block:: python

WAGTAILSVG_UPLOAD_FOLDER = 'svg'

Default value is 'media'

Development env ###############

If first run

::

git clone git@github.com:Aleksi44/wagtailsvg.git
pip install -r requirements.txt
python manage.py migrate
python manage.py init

Run Django Server

::

python manage.py runserver 0.0.0.0:4243

Run Webpack Server

::

yarn
yarn start

Snoweb SVG ##########

To integrate SVG icons on Wagtail, I created Snoweb SVG with +2000 optimized SVG. Check the SVG library <https://github.com/Aleksi44/snoweb-svg>_.

Feel free to contact me at hello@snoweb.io.

Made with ❤ by Snoweb <https://www.snoweb.io/fr/>_.

Keywords

wagtail svg

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts