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