1
0
Fork 0

Fixes follow request notifications

Since the main way to interact with them is by approving them in the
notification, I didn't group them
This commit is contained in:
Mouse Reeve 2022-07-05 15:03:20 -07:00
parent e54c563865
commit 7fe722b595
3 changed files with 36 additions and 14 deletions

View file

@ -8,8 +8,10 @@
{% endblock %}
{% block description %}
{% trans "sent you a follow request" %}
{% blocktrans trimmed %}
<a href="{{ related_user_link }}">{{ related_user }}</a> sent you a follow request
{% endblocktrans %}
<div class="row shrink">
{% include 'snippets/follow_request_buttons.html' with user=notification.related_user %}
{% include 'snippets/follow_request_buttons.html' with user=notification.related_users.first %}
</div>
{% endblock %}