followers.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {% extends "misago/profile/base.html" %}
  2. {% load humanize i18n misago_avatars misago_pagination %}
  3. {% block page %}
  4. {% if followers.object_list %}
  5. <p class="lead">
  6. {% if is_authenticated_user %}
  7. {% blocktrans trimmed with followers=profile.followers|intcomma count counter=profile.followers %}
  8. You are followed by {{ followers }} user.
  9. {% plural %}
  10. You are followed by {{ followers }} users.
  11. {% endblocktrans %}
  12. {% else %}
  13. {% blocktrans trimmed with user=profile.username followers=profile.followers|intcomma count counter=profile.followers %}
  14. {{ user }} is followed by {{ followers }} user.
  15. {% plural %}
  16. {{ user }} is followed by {{ followers }} users.
  17. {% endblocktrans %}
  18. {% endif %}
  19. </p>
  20. {% include "misago/users_cards.html" with cards=followers.object_list %}
  21. {% pagination followers "misago/profile/pagination.html" 'misago:user_followers' user_slug=profile.slug user_id=profile.pk %}
  22. {% else %}
  23. <p class="lead">
  24. {% if is_authenticated_user %}
  25. {% blocktrans trimmed with user=profile.username %}
  26. No users are following you, {{ user }}.
  27. {% endblocktrans %}
  28. {% else %}
  29. {% blocktrans trimmed with user=profile.username %}
  30. {{ user }} has no followers.
  31. {% endblocktrans %}
  32. {% endif %}
  33. </p>
  34. {% endif %}
  35. {% endblock page %}