django-infinite-icons

Django-infinite-icons will help you to render SVG icons.


License
MIT
Install
pip install django-infinite-icons==0.1

Documentation

django-infinite-icons

Build Status

Django-infinite-icons will help you to render SVG icons in your template & you can alter its width ,height and viewport without hassle.

This project is inspired by FeatherIcons and the author colebmis.

Installation

you can get django-infinite-icons by using pip.

$ pip install django-infinite-icons

To enable widget_tweaks in your project you need to add it to INSTALLED_APPS in your projects settings.py file:

INSTALLED_APPS = [
    ...
    'django_infinite_icons',
    ...
]

Example Usage for SVG render

{% load infinite %}

{% icon_render 'activity.svg' width='45' %}
{% icon_render 'activity.svg' height='45' width='45' %}
{% icon_render 'activity.svg' height='45' width='45' viewbox='0 0 20 20' %}

Example Usage load as static file

{% load infinite %}

{% icon_render 'activity.svg' %}

License

MIT