Notifications
{% for activity in latest_notifications %}
{{ activity.source_content_type.name|source_type }}
{{ activity.source.title|capfirst|truncatechars:15 }}
: {{ activity.user.get_full_name }} {% if activity.type == 'comment' %}{% trans "made a comment" %}{% else %} {{ activity|display_for:request.user }}{% endif %}
{% if activity.related_object %}{{ activity.related_object|model_verbose_name }}{% endif %}
{% endfor %}
Show All