Use Tabler Icons in your Django and Jinja templates.
Python from 3.10 supported.
Django from 5.2 supported.
The tablericons2 package supports both Django templates and Jinja templates.
Follow the appropriate guide below.
-
Install with
python -m pip install tablericons2[django]. -
Add to your
INSTALLED_APPS:INSTALLED_APPS = [ ..., "tablericons", ..., ]
-
Now your templates can load the template library with:
{% load tablericons %}
Alternatively, make the library available in all templates by adding it to the builtins option:
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
# ...
"OPTIONS": {
# ...
"builtins": [
...,
"tablericons.templatetags.tablericons",
...,
],
},
}
]The library provides one tag (icon) to render SVG icons which can take these arguments:
-
name, positional: the name of the icon to use. You can see the icon names on the tabler 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. It can also beNone, 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-linecapstroke-linejoinvector-effect
Note: unlike the SVG code you can copy from tabler grid, there is no default
class.
An "arrow-down” icon:
{% icon "outline/arrow-down" %}The same icon at 40x40 pixels, and a CSS class:
{% icon "outline/arrow-down" size=40 class="mr-4" %}That icon again, but with the paths changed to a narrower stroke width, and a "data-controller" attribute declared:
{% icon "outline/arrow-down" stroke_width=1 data_controller="language" %}New in 1.1.0
You can override the default size and stroke width using your settings.py:
TABLERICONS_SIZE = 24
TABLERICONS_STROKE_WIDTH = 2-
Install with
python -m pip install tablericons[jinja]. -
Adjust your Jinja
Environmentto add the globaltablericonsfunction fromtablericons.jinja. For example:from tablericons.jinja import tablericons from jinja2 import Environment env = Environment() env.globals.update({ "tablericons": tablericons } )
-
Now in your templates you can call that function, which will render the corresponding
<svg>icons. The function takes these arguments:
-
name, positional: the name of the icon to use. You can see the icon names on the tabler 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. Can beNone, 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-linecapstroke-linejoinvector-effect
Note: unlike the SVG code you can copy from tabler grid, there is no default
class.
An "outline/arrow-down” icon:
{{ icon("outline/arrow-down") }}The same icon at 40x40 pixels and a CSS class:
{{ icon("outline/arrow-down", size=40, class="mr-4") }}That icon again, but with the paths changed to a narrower stroke width, and a "data-controller" attribute declared:
{{ icon("outline/arrow-down", stroke_width=1, data_controller="language") }}This package is forked from franciscobmacedo/lucide which in turn is heavely inspired by Adam Johnson's heroicons.