{% extends 'base.html' %} {% load static i18n pagination permissions_tags mural_filters %} {% load django_bootstrap_breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% trans 'Mural: Per Category' as category %} {% breadcrumb category 'mural:manage_category' %} {% endblock %} {% block content %}
{% if categories.count > 0 %}
{% for category in categories %} {% category_permissions request.user category as has_category_permissions %} {% if category.visible or has_category_permissions %} {% if category.visible %}
{% elif has_category_permissions %}
{% endif %}

{{ category.name }} ({{ category|unviewed:request.user }})

{% if has_category_permissions %} {% endif %}

{% trans 'Filter' %}

{% trans 'Wish to make a new post?' %}

{% endif %} {% endfor %} {% pagination request paginator page_obj %}
{% endif %}
{% endblock %} {% block addtional_scripts %} {% endblock %}