Use heroicons in your Django and Jinja templates.
Project description
Use heroicons in your Django and Jinja templates.
Requirements
Python 3.8 to 3.12 supported.
Django 3.2 to 5.0 supported.
Working on a Django project? Improve your skills with one of my books.
Usage
The heroicons package supports both Django templates and Jinja 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 your templates can load the template library with:
{% load heroicons %}
Alternatively, make the library available in all templates by adding it to the builtins option:
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
# ...
"OPTIONS": {
# ...
"builtins": [
...,
"heroicons.templatetags.heroicons",
...,
],
},
}
]
The library provides three tags to render SVG icons: heroicon_outline, heroicon_solid, and heroicon_mini. These tags correspond to the three styles in the icon set and 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 solid, and 20 for mini. Can be None, in which case no width or height attributes will be output.
Any number of keyword arguments. These will be added as attributes in the output HTML. Underscores in attribute names will be replaced with dashes, allowing you to define e.g. data- attributes.
Most attributes will be added to the <svg> tag containing the icon, but these attributes will be attached to the inner <path> tags instead:
stroke-linecap
stroke-linejoin
vector-effect
Note: unlike the SVG code you can copy from heroicons.com, there is no default class.
Examples
An outline “academic-cap” icon:
{% heroicon_outline "academic-cap" %}
The same icon, solid, at 40x40 pixels, and a CSS class:
{% heroicon_outline "academic-cap" size=40 class="mr-4" %}
That icon again, but with the paths changed to a narrower stroke width, and a “data-controller” attribute declared:
{% heroicon_outline "academic-cap" stroke_width=1 data_controller="academia" %}
Jinja templates
Install with python -m pip install heroicons[jinja].
Adjust your Jinja Environment to add the three global functions heroicon_outline, heroicon_solid and heroicon_mini, imported from heroicons.jinja. For example:
from heroicons.jinja import heroicon_outline, heroicon_solid, heroicon_mini from jinja2 import Environment env = Environment() env.globals.update( { "heroicon_outline": heroicon_outline, "heroicon_solid": heroicon_solid, "heroicon_mini": heroicon_mini, } )
Now in your templates you can call those functions, which render <svg> icons corresponding to the 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 solid, and 20 for mini. Can be None, in which case no width or height attributes will be output.
Any number of keyword arguments. These will be added as HTML attributes to the output HTML. Underscores in attribute names will be replaced with dashes, allowing you to define e.g. data- attributes.
Most attributes will be added to the <svg> tag containing the icon, but these attributes will be attached to the inner <path> tags instead:
stroke-linecap
stroke-linejoin
vector-effect
Note: unlike the SVG code you can copy from heroicons.com, there is no default class.
Examples
An outline “academic-cap” icon:
{{ heroicon_outline("academic-cap") }}
The same icon, solid, at 40x40 pixels, and a CSS class:
{{ heroicon_solid("academic-cap", size=40, class="mr-4") %}
That icon again, but with the paths changed to a narrower stroke width, and a “data-controller” attribute declared:
{{ heroicon_outline("academic-cap", stroke_width=1, data_controller="academia") %}
CLI
Many icons were renamed in version 2 of heroicons. To assist you with migrating from version 1, this package includes a CLI that can update your heroicons template tags.
Invoke the CLI like so:
$ python -m heroicons update <filename> <filename2> ...
To run it on all your template files, you can use git ls-files | xargs:
$ git ls-files -- '*.html' | xargs python -m heroicons update
The tool will update icon names for those that were renamed in v2, as per the table in the heroicons release notes. It should find both Django and Jinja template tags:
-{% heroicon_outline "archive" class="mr-2" %}
+{% heroicon_outline "archive-box" class="mr-2" %}
-{{ heroicon_solid("archive", class="mr-2") }}
+{{ heroicon_solid("archive-box", class="mr-2") }}
Also note that solid icons changed their default size from 20px to 24px. If you are using them without specifying a size, they will now be larger, which could break some designs. You can keep the v1 size by specifying it exactly:
{% heroicon_solid "archive-box" size=20 %}
{{ heroicon_solid("archive-box", size=20) }}
Or through other mechanisms:
Due to the variety of ways to size icons, it’s unfortunately not possible to automatically add the size to unsized solid icons.
Good luck, and may the odds be ever in your favour.
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-2.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f23c027cd12f8c6243add7a5fd1050d12b90d4bd36d75048c26bf5f0d6d16a5d |
|
MD5 | 69e7cdae477ebd3144cc5aca0ca40ddf |
|
BLAKE2b-256 | 923cdbc7ae6565c0af7fa357543e9ec0b2a9b69ce7e8bcc46b9e31c0e6a340d0 |