2022-01-11 18:47:55 +00:00
|
|
|
{% extends 'notifications/items/layout.html' %}
|
2021-10-03 00:46:51 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
{% load utilities %}
|
|
|
|
|
|
|
|
{% block primary_link %}{% spaceless %}
|
2021-10-05 10:48:59 +00:00
|
|
|
{{ notification.related_group.local_path }}
|
2021-10-03 00:46:51 +00:00
|
|
|
{% endspaceless %}{% endblock %}
|
|
|
|
|
|
|
|
{% block icon %}
|
|
|
|
<span class="icon icon-local"></span>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block description %}
|
2021-10-23 13:59:06 +00:00
|
|
|
{% blocktrans trimmed with group_name=notification.related_group.name group_path=notification.related_group.local_path %}
|
2021-10-23 15:00:45 +00:00
|
|
|
invited you to join the group "<a href="{{ group_path }}">{{ group_name }}</a>"
|
2021-10-03 00:46:51 +00:00
|
|
|
{% endblocktrans %}
|
|
|
|
<div class="row shrink">
|
|
|
|
{% include 'snippets/join_invitation_buttons.html' with group=notification.related_group %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|