django-inline-svg

A simple SVG template tag for Django


Keywords
django, svg, templatetag
License
MIT
Install
pip install django-inline-svg==0.1.1

Documentation

django-inline-svg Latest version

Build status Monthly downloads Software license

A simple plugin that adds an svg template tag to inline your SVGs in your Django templates.

Installation

Install it from pypi.

$ pip install django-inline-svg

Add svg to your INSTALLED_APPS.

INSTALLED_APPS = (
    ...
    'svg',
    ...
)

Usage

Store your SVGs in folder named svg at the root of any of your static file directories.

my_app
|-- static
|   |-- svg
|       |-- logo.svg
|       |-- check.svg
|       |-- cross.svg

Use the svg template tag.

{% load svg %}

<h1 class="logo">{% svg 'logo' %}</h1>

You can set SVG_DIRS to control where to look for your svgs.

# settings.py

SVG_DIRS=[
    os.path.join(BASE_DIR, 'my-svgs')
]

Support

The tests are run against Django 1.8, 1.9, 1.10 on Python 2.7, 3.3, 3.4, 3.5.

License

MIT