forked from mirrors/bookwyrm
13 lines
317 B
HTML
13 lines
317 B
HTML
{% extends 'notifications/items/item_layout.html' %}
|
|
|
|
{% load i18n %}
|
|
{% load utilities %}
|
|
|
|
{% block icon %}
|
|
<span class="icon icon-local"></span>
|
|
{% endblock %}
|
|
|
|
{% block description %}
|
|
{% trans "followed you" %}
|
|
{% include 'snippets/follow_button.html' with user=notification.related_user %}
|
|
{% endblock %}
|