{% extends "djangobmf/base.html" %} {% load i18n %} {% block title %}{% trans "Notifications" %}{% endblock %} {% block full_content %}

{% if glob_settings %} {% trans "Default settings" %}: {% url "djangobmf:api-notification" model=model_name app=app_label as url %} {% if has_detectchanges %} {% endif %} {% if has_workflow %} {% endif %} {% if has_comments %} {% endif %} {% if has_files %} {% endif %} {% else %} {% endif %}

{% for item in object_list %} {% empty %} {% endfor %}
{% trans "Notifications" %}
{{ item.watch_object }} {% if item.unread %}new{% endif %}
{% if not glob_settings %}[{{ item.watch_ct }}]{% endif %} {{ item.modified|date:"SHORT_DATETIME_FORMAT" }}
{% url "djangobmf:api-notification" model=model_name app=app_label pk=item.watch_id as url %} {% if has_detectchanges %} {% endif %} {% if has_workflow %} {% endif %} {% if has_comments %} {% endif %} {% if has_files %} {% endif %}
{% trans "You dont have notifications" %}
{% if is_paginated %}
{% endif %}
{% endblock %}