{% extends 'catalog/base.html' %} {% load customtags %} {% block content %} {% regroup hashtags by category as hashtags_list %}
{% for hc in hashtags_list %} {% if hc.grouper.name != 'Ressource' %}

{{ hc.grouper.name|lowercase }} :

{% for hashtag in hc.list|slice:":10" %} {% hashtag_f hashtag w100=false %} {% endfor %}

{% endif %} {% endfor %}
{% endblock %}