1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {% extends "misago/profile/base.html" %}
- {% load humanize i18n misago_avatars misago_pagination %}
- {% block meta-description %}{% blocktrans trimmed with user=profile followers=profile.followers|intcomma count counter=profile.followers %}
- {{ user }} is followed by {{ followers }} user.
- {% plural %}
- {{ user }} is followed by {{ followers }} users.
- {% endblocktrans %}{% endblock meta-description %}
- {% block page %}
- {% if followers.object_list %}
- <p class="lead">
- {% if is_authenticated_user %}
- {% blocktrans trimmed with followers=profile.followers|intcomma count counter=profile.followers %}
- You are followed by {{ followers }} user.
- {% plural %}
- You are followed by {{ followers }} users.
- {% endblocktrans %}
- {% else %}
- {% blocktrans trimmed with user=profile followers=profile.followers|intcomma count counter=profile.followers %}
- {{ user }} is followed by {{ followers }} user.
- {% plural %}
- {{ user }} is followed by {{ followers }} users.
- {% endblocktrans %}
- {% endif %}
- </p>
- {% include "misago/users_cards.html" with cards=followers.object_list %}
- {% pagination followers "misago/profile/pagination.html" 'misago:user_followers' user_slug=profile.slug user_id=profile.pk %}
- {% else %}
- <p class="lead">
- {% if is_authenticated_user %}
- {% blocktrans trimmed with user=profile %}
- No users are following you, {{ user }}.
- {% endblocktrans %}
- {% else %}
- {% blocktrans trimmed with user=profile %}
- {{ user }} has no followers.
- {% endblocktrans %}
- {% endif %}
- </p>
- {% endif %}
- {% endblock page %}
|