Skip to main content

Use tablericons in your Django and Jinja templates.

Project description

https://img.shields.io/github/actions/workflow/status/gartmeier/tablericons/main.yml.svg?branch=main&style=for-the-badge https://img.shields.io/badge/Coverage-100%25-success?style=for-the-badge https://img.shields.io/pypi/v/soulclick-tablericons.svg?style=for-the-badge https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge pre-commit

Use tablericons in your Django and Jinja templates.

Requirements

Python 3.9 to 3.13 supported.

Django 4.2 to 5.1 supported.

Usage

The soulclick-tablericons package supports both Django templates and Jinja templates. Follow the appropriate guide below.

Django templates

  1. Install with python -m pip install soulclick-tablericons[django].

  2. 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 these tags to render SVG icons in their corresponding styles:

  • tablericon_outline

  • tablericon_filled

The tags take these arguments:

  • name, positional: the name of the icon to use. You can see the icon names on the tablericons.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, 20 for mini, and 16 for micro. 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

Examples

An outline “school” icon:

{% tablericon_outline "school" %}

The same icon, solid, at 40x40 pixels, and a CSS class:

{% tablericon_outline "school" size=40 class="mr-4" %}

That icon again, but with the paths changed to a narrower stroke width, and a “data-controller” attribute declared:

{% tablericon_outline "school" stroke_width=1 data_controller="academia" %}

Jinja templates

  1. Install with python -m pip install soulclick-tablericons[jinja].

  2. Adjust your Jinja Environment to add the global tablericon_* functions from tablericons.jinja. For example:

    from tablericons.jinja import (
        tablericon_outline,
        tablericon_filled,
    )
    from jinja2 import Environment
    
    env = Environment()
    env.globals.update(
        {
            "tablericon_outline": tablericon_outline,
            "tablericon_filled": tablericon_filled,
        }
    )

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 tablericons.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, 20 for mini, and 16 for micro. 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 tablericons.com, there is no default class.

Examples

An outline “egg” icon:

{{ tablericon_outline("egg") }}

The same icon, solid, at 40x40 pixels, and a CSS class:

{{ tablericon_filled("egg", size=40, class="mr-4") %}

That icon again, but with the paths changed to a narrower stroke width, and a “data-controller” attribute declared:

{{ tablericon_outline("egg", stroke_width=1, data_controller="academia") %}

Acknowledgements

This package is heavely inspired by Adam Johnson’s heroicons. It’s actually mostly copied from it so a huge thanks Adam!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

soulclick_tablericons-1.0.0.tar.gz (2.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

soulclick_tablericons-1.0.0-py3-none-any.whl (2.0 MB view details)

Uploaded Python 3

File details

Details for the file soulclick_tablericons-1.0.0.tar.gz.

File metadata

  • Download URL: soulclick_tablericons-1.0.0.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for soulclick_tablericons-1.0.0.tar.gz
Algorithm Hash digest
SHA256 18295b3a20189a1cf3bc98978e190d914b7a8ebf5ee65ea9734b2d2bc3b1e189
MD5 573118eafb6a2ca4f4a04b3372529fa7
BLAKE2b-256 520ff184fdb421680db4946699232cbb4346b97a91ac8b28a4b359c652481329

See more details on using hashes here.

Provenance

The following attestation bundles were made for soulclick_tablericons-1.0.0.tar.gz:

Publisher: main.yml on soulclick/tablericons

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soulclick_tablericons-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for soulclick_tablericons-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 01f90da489b25d735faec12191f2e7e1d08ff7a6d395e1854d3139b9016ae75f
MD5 0b9b723f1c0bc252e4cb7e7f102d9b4b
BLAKE2b-256 b7ec63cec549c73bf87d973a88a40078e956107f4adb4c0368b16737ea17753f

See more details on using hashes here.

Provenance

The following attestation bundles were made for soulclick_tablericons-1.0.0-py3-none-any.whl:

Publisher: main.yml on soulclick/tablericons

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page