bookwyrm-mastodon/bookwyrm/templates/notifications/items/follow.html

18 lines
438 B
HTML
Raw Normal View History

2021-10-02 13:46:09 -04:00
{% extends 'notifications/items/item_layout.html' %}
2021-10-02 12:50:48 -04:00
{% load i18n %}
{% load utilities %}
{% block primary_link %}{% spaceless %}
{{ notification.related_user.local_path }}
{% endspaceless %}{% endblock %}
2021-10-02 12:50:48 -04:00
{% 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 %}