moviewyrm/bookwyrm/templates/notifications/items/accept.html

21 lines
568 B
HTML
Raw Normal View History

2022-01-11 18:47:55 +00:00
{% extends 'notifications/items/layout.html' %}
{% load i18n %}
{% load utilities %}
{% block primary_link %}{% spaceless %}
2021-10-04 11:20:02 +00:00
{{ notification.related_group.local_path }}
{% endspaceless %}{% endblock %}
{% block icon %}
2021-10-04 11:20:02 +00:00
<span class="icon icon-local"></span>
{% endblock %}
{% block description %}
{% blocktrans trimmed with group_name=notification.related_group.name group_path=notification.related_group.local_path %}
2021-10-04 11:20:02 +00:00
accepted your invitation to join group "<a href="{{ group_path }}">{{ group_name }}</a>"
{% endblocktrans %}
2021-10-05 10:48:59 +00:00
{% endblock %}