django-inline-svg 0.1.1
pip install django-inline-svg
Latest version
Released:
A simple SVG template tag for Django
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT License)
- Author: Mitchel Cabuloy
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
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
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT License)
- Author: Mitchel Cabuloy
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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 django-inline-svg-0.1.1.tar.gz
.
File metadata
- Download URL: django-inline-svg-0.1.1.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a908eb7f2ed23317f896be6e0c355ec488b1944e6f4d2d829a74d1d4e5fb918 |
|
MD5 | 3a8ece85ce6b3a059c7609017471e421 |
|
BLAKE2b-256 | a1466bf3b74ce8a47e6cc413f4f5cbb08af2eb831387c2136b3b750c8c24bb0e |