threads.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {% extends "misago/profile/base.html" %}
  2. {% load i18n %}
  3. {% block title %}{% trans "Threads" %} | {{ block.super }}{% endblock %}
  4. {% block og-title %}{% trans "Threads" %} | {{ block.super }}{% endblock %}
  5. {% block section %}
  6. <div class="profile-threads">
  7. {% if posts %}
  8. <div>
  9. <nav class="toolbar">
  10. <h3 class="toolbar-left">
  11. {% if is_authenticated_user %}
  12. {% blocktrans trimmed count threads=paginator.count %}
  13. You have started {{ threads }} thread.
  14. {% plural %}
  15. You have started {{ threads }} threads.
  16. {% endblocktrans %}
  17. {% else %}
  18. {% blocktrans trimmed count threads=paginator.count with username=profile %}
  19. {{ username }} has started {{ threads }} thread.
  20. {% plural %}
  21. {{ username }} has started {{ threads }} threads.
  22. {% endblocktrans %}
  23. {% endif %}
  24. </h3>
  25. </nav>
  26. {% include "misago/profile/feed.html" %}
  27. </div>
  28. {% else %}
  29. <p class="lead">
  30. {% if is_authenticated_user %}
  31. {% trans "You have no started threads." %}
  32. {% else %}
  33. {% blocktrans trimmed with username=profile.username %}
  34. {{ username }} started no threads.
  35. {% endblocktrans %}
  36. {% endif %}
  37. </p>
  38. {% endif %}
  39. </div>
  40. {% endblock section %}