threads.html 618 B

123456789101112131415161718
  1. {% extends "misago/profile/base.html" %}
  2. {% load humanize i18n %}
  3. {% block meta-description %}{% blocktrans trimmed with user=profile threads=profile.threads|intcomma joined_on=profile.joined_on|date count counter=profile.threads %}
  4. {{ user }} has started {{ threads }} thread since {{ joined_on }}.
  5. {% plural %}
  6. {{ user }} has started {{ threads }} threads since {{ joined_on }}.
  7. {% endblocktrans %}{% endblock meta-description %}
  8. {% block page %}
  9. <p class="lead">
  10. {% blocktrans trimmed with user=profile %}
  11. {{ user }} started no threads, or you can't see them.
  12. {% endblocktrans %}
  13. </p>
  14. {% endblock page %}