bookwyrm/bookwyrm/templates/notifications/items/follow_request.html

16 lines
378 B
HTML
Raw Normal View History

2022-01-11 18:47:55 +00:00
{% extends 'notifications/items/layout.html' %}
2021-10-02 16:50:48 +00:00
{% load i18n %}
{% load utilities %}
{% block icon %}
<span class="icon icon-local"></span>
{% endblock %}
{% block description %}
{% trans "sent you a follow request" %}
<div class="row shrink">
{% include 'snippets/follow_request_buttons.html' with user=notification.related_user %}
</div>
{% endblock %}