{% extends 'base.html' %} {% load static i18n pagination permissions_tags subject_counter %} {% load django_bootstrap_breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% if category %} {% breadcrumb category 'subjects:cat_view' category.slug %} {% endif %} {% breadcrumb 'Pendencies' 'notifications:manage' %} {% endblock %} {% block content %}
{% trans 'This pendencies list is updated every 24 hours. Last update was in:' %} {{ last_update|default:_('Not determined') }}
{% if notifications.count > 0 %}

{% trans 'You got pendencies in the following subjects' %}:

{% for notification in notifications %}
{% endfor %} {% pagination request paginator page_obj %}
{% else %}

{% trans 'You do not posses any pendency.' %}

{% endif %} {% endblock %}