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 %}
|
|
|
|
|
2021-10-02 11:24:07 -07:00
|
|
|
{% block primary_link %}{% spaceless %}
|
2022-07-05 14:44:15 -07:00
|
|
|
{% url 'user-followers' request.user.localname %}
|
2021-10-02 11:24:07 -07:00
|
|
|
{% endspaceless %}{% endblock %}
|
|
|
|
|
2021-10-02 09:50:48 -07:00
|
|
|
{% block icon %}
|
|
|
|
<span class="icon icon-local"></span>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block description %}
|
2022-07-05 14:25:42 -07:00
|
|
|
{% 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
|
2022-07-05 14:25:42 -07:00
|
|
|
{% endblocktrans %}
|
|
|
|
{% endif %}
|
|
|
|
|
2021-10-02 09:50:48 -07:00
|
|
|
{% endblock %}
|