1
0
Fork 0
bookwyrm/bookwyrm/templates/notifications/items/follow.html

31 lines
899 B
HTML
Raw Normal View History

2022-01-11 10:47:55 -08:00
{% extends 'notifications/items/layout.html' %}
2021-10-02 09:50:48 -07:00
{% load i18n %}
{% load utilities %}
{% block primary_link %}{% spaceless %}
2022-07-05 14:44:15 -07:00
{% url 'user-followers' request.user.localname %}
{% endspaceless %}{% endblock %}
2021-10-02 09:50:48 -07:00
{% block icon %}
<span class="icon icon-local"></span>
{% endblock %}
{% block description %}
{% if related_user_count == 1 %}
{% blocktrans trimmed %}
<a href="{{ related_user_link }}">{{ related_user }}</a> followed you
{% endblocktrans %}
{% elif related_user_count == 2 %}
{% blocktrans trimmed %}
<a href="{{ related_user_link }}">{{ related_user }}</a> and
<a href="{{ second_user_link }}">{{ second_user }}</a> followed you
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
2022-07-05 14:44:15 -07:00
<a href="{{ related_user_link }}">{{ related_user }}</a> and {{ other_user_display_count }} others followed you
{% endblocktrans %}
{% endif %}
2021-10-02 09:50:48 -07:00
{% endblock %}