{% extends 'config/config_base.html' %} {% load i18n pinmok_tags %} {% block page_subtitle %}Icon Management{% endblock %} {% block page_title %}{% translate 'Icons in sprite' %}{% endblock %} {% block page_right %} {% icon 'tabler-plus' %} {% translate 'Add' %} {% translate 'SVG Icon' %} {% endblock %} {% block content %}
{% icon 'tabler-search' 'icon' %}
{% if custom_icons %} {% for custom_icon in custom_icons %}
{% icon custom_icon size=36 %}
{{ custom_icon }}
{% icon 'tabler-edit' %}
{% endfor %} {% else %} {% translate 'No custom icons found.' %} {% endif %}
{% for icon in icons %}
{% icon icon size=36 %}
{{ icon }}
{% endfor %}
Help Text
{% endblock %} {% block scripts %} {% endblock %}