{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Notifications" %}{% endblock %} {% block main %}

{% trans "Notifications" %}

{% if is_paginated %} {% if page_obj.has_previous %} {% trans "previous" %} {% endif %} {% blocktrans with number=page_obj.number num_pages=page_obj.paginator.num_pages %}Page {{ number }} of {{ num_pages }}{% endblocktrans %} {% if page_obj.has_next %} {% trans "next" %} {% endif %} {% endif %} {% endblock %}