follows.html 1.5 KB

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