{% load i18n %} {% load perm_tags %} {% trans "Group Add Notice" %}

{% if request.user.is_superuser %}{% blocktrans with request.user.get_full_name as requser %}The following group was added to the {{ SITE_GLOBAL_SITEDISPLAYNAME }} by {{ requser }}(superuser){% endblocktrans %}{% else %}{% blocktrans with request.user.get_full_name as requser%}The following group was added to the {{ SITE_GLOBAL_SITEDISPLAYNAME }} by {{ requser }} and needs to be activated{% endblocktrans %}{% endif %}:

  {% trans "Name:" %} {{ object.name }}
  {% trans "Label:" %} {{ object.label }}

{% blocktrans %}To view the details of this group, go to:{% endblocktrans %} {{ SITE_GLOBAL_SITEURL }}{% url group.detail object.slug %}
{% if object.status_detail != 'active' %}

{% blocktrans %}To activate this group, go to:{% endblocktrans %} {{ SITE_GLOBAL_SITEURL }}{% url group.edit object.slug %}

{% endif %}

{% trans "Time submitted:" %} {% now "D d M Y P" %}