{% extends 'notifications/items/layout.html' %}
{% load i18n %}
{% load utilities %}
{% block primary_link %}{% spaceless %}
    {{ notification.related_group.local_path }}
{% endspaceless %}{% endblock %}
{% block icon %}
{% endblock %}
{% block description %}
    {% if notification.notification_type == 'GROUP_PRIVACY' %}
        {% blocktrans trimmed with group_name=notification.related_group.name group_path=notification.related_group.local_path %}
        has changed the privacy level for {{ group_name }}
        {% endblocktrans %}
    {% elif notification.notification_type == 'GROUP_NAME' %}
        {% blocktrans trimmed with group_name=notification.related_group.name group_path=notification.related_group.local_path %}
        has changed the name of {{ group_name }}
        {% endblocktrans %}
    {% else %}
        {% blocktrans trimmed with group_name=notification.related_group.name group_path=notification.related_group.local_path %}
        has changed the description of {{ group_name }}
        {% endblocktrans %}
    {% endif %}
{% endblock %}