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

{% trans "Notifications" %}

{# Tab 1 #}
{% for comment in comments %}

{{ comment.source_content_type.name|source_type }}

{{ comment.source.title|capfirst|truncatechars:15 }} : {{ comment.user }} made a comment – {{ comment.timestamp|date:"SHORT_DATETIME_FORMAT" }}

{% endfor %}
{# Tab 2 #}
{% for action in actions %}

{{ action.source_content_type.name|source_type }}

{{ action.source.title|capfirst|truncatechars:15 }} : {{ action.message }} {% if action.related_object %}{{ action.related_object|model_verbose_name }}{% endif %} – {{ action.timestamp|date:"SHORT_DATETIME_FORMAT" }}

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