Refactor icon rendering; replace direct icon calls with render_icon function for consistency across templates

This commit is contained in:
Yaro Kasear 2025-06-20 08:44:55 -05:00
parent 89cee64f04
commit 30d3cd7c45
7 changed files with 15 additions and 128 deletions

View file

@ -25,6 +25,6 @@
{% macro entry_link(endpoint, id) %}
<a href="{{ url_for('main.' + endpoint, id=id) }}" class="link-success link-underline-opacity-0">
{{ icons.link(12) }}
{{ icons.render_icon('link', 12) }}
</a>
{% endmacro %}