{% load shared %}
{% for tag in group.tags %} {# Highlight first char of first tag in group #} {% if forloop.counter == 1 %} {{ tag.name|first_char }}{{ tag.name|remaining_chars:1 }} {% else %} {# Render remaining tags normally #} {{ tag.name }} {% endif %} {% endfor %}
{% endfor %}