Use heroicons in your Django and Jinja templates.
Project description
Use heroicons in your Django and Jinja templates.
Requirements
Python 3.6 to 3.9 supported.
Django 2.2 to 3.2 supported.
Are your tests slow? Check out my book Speed Up Your Django Tests which covers loads of best practices so you can write faster, more accurate tests.
Usage
The heroicons package supports both Django templates and Jinja2 templates. Follow the appropriate guide below.
Django templates
Install with python -m pip install heroicons[django].
Add to your INSTALLED_APPS:
INSTALLED_APPS = [ ..., 'heroicons', ..., ]
Now in your templates you can load the template library with:
{% load heroicons %}
This provides two tags to render <svg> icons: heroicon_outline and heroicon_solid, corresponding to the two icon styles in the set. The tags take these arguments:
name, positional: the name of the icon to use. You can see the icon names on the heroicons.com grid.
size, keyword: an integer that will be used for the width and height attributes of the output <svg> tag. Defaults to the icons’ designed sizes: 24 for outline and 20 for solid.
Any number of keyword arguments. These will be added as HTML attributes to the output <svg> tag. Underscores in attribute names will be replaced with dashes, allowing you to define e.g. data- attributes.
For example, to render an outline “academic-cap” icon, at 48x48, with some extra CSS classes and a data attribute “controller”, you would write:
{% heroicon_outline "academic-cap" size=48 class="h-4 w-4 inline" data_controller="academia" %}
Jinja templates
Install with python -m pip install heroicons[jinja].
Adjust your Jinja Environment to add the two global functions heroicon_outline and heroicon_solid, imported from heroicons.jinja. For example:
from heroicons.jinja import heroicon_outline, heroicon_solid from jinja2 import Environment env = Environment() env.globals.update( { "heroicon_outline": heroicon_outline, "heroicon_solid": heroicon_solid, } )
Now in your templates you can call those two functions, which render <svg> icons corresponding to the two icon styles in the set. The functions take these arguments:
name, positional: the name of the icon to use. You can see the icon names on the heroicons.com grid.
size, keyword: an integer that will be used for the width and height attributes of the output <svg> tag. Defaults to the icons’ designed sizes: 24 for outline and 20 for solid.
Any number of keyword arguments. These will be added as HTML attributes to the output <svg> tag. Underscores in attribute names will be replaced with dashes, allowing you to define e.g. data- attributes.
For example, to render an outline “academic-cap” icon, at 48x48, with some extra CSS classes and a data attribute “controller”, you would write:
{{ heroicon_outline("academic-cap", size=48, class="h-4 w-4 inline", data_controller="academia") %}
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
Built Distribution
Hashes for heroicons-1.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 487388261d5819135803415aba7f44e98e21eb5a3333fc2774d0925af1545610 |
|
MD5 | 9be77275143b541a17889fd3f8c54ece |
|
BLAKE2b-256 | a10f2c5caa998d0be8676264abe9801d55d4fc05d3696c9e92a7464571648ad1 |