{% extends "base-apply.html" %} {% load i18n static activity_tags apply_tags bleach_tags markdown_tags submission_tags %} {% block content %}

{% trans "Notifications" %}

{{ filter.form }}
{# Tab 1 #}
{% for activity in object_list %} {% if activity.type == 'comment' %}

{{ activity.source_content_type.name|source_type }}

{{ activity.source.title|capfirst }} : {{ activity.user.get_full_name }} {% trans "made a comment" %} – {{ activity.timestamp|date:"SHORT_DATE_FORMAT" }}

{% endif %} {% endfor %}
{# Tab 2 #}
{% for activity in object_list %} {% if activity.type == 'action' %}

{{ activity.source_content_type.name|source_type }}

{{ activity.source.title|capfirst }} : {{ activity.user.get_full_name }} – {{ activity.timestamp|date:"SHORT_DATE_FORMAT" }} – {{ activity|display_for:request.user }} {% if activity.related_object %}{{ activity.related_object|model_verbose_name }} {% endif %}

{% endif %} {% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}