spejstore/templates/widgets/categoryicon.html

6 lines
194 B
HTML
Raw Normal View History

2024-01-30 22:38:56 +00:00
{% load static %}
{% if category and category.icon_id %}
2024-01-30 22:38:56 +00:00
<div class="containericon" title="{{ category.name }}"><img src="{% static '/icons/' %}{{ category.icon_id }}.svg" />
2024-01-12 17:56:08 +00:00
</div>
{% endif %}