aboutsummaryrefslogtreecommitdiff
path: root/weblog/templates/weblog/sidebar_categories.html
blob: 7e7fa5ce11b0bc5f1d17381b390f3b3c0cb2e900 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% load i18n %}
{% if categories %}
<h3>{% trans 'Categories' context 'Post categories' %}</h3>
<div class="list-group weblog-categories">
    {% for category in categories %}
    <a href="{% url 'weblog:CategoryIndex' category_slug=category.slug %}" class="list-group-item{% if category.slug == selected_cat_slug %} active{% endif %}">
        {{ category.name }}
    </a>
    {% endfor %}
</div>
{% endif %}