12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {% extends "misago/profile/base.html" %}
- {% load i18n %}
- {% block title %}{% trans "Threads" %} | {{ block.super }}{% endblock %}
- {% block og-title %}{% trans "Threads" %} | {{ block.super }}{% endblock %}
- {% block section %}
- <div class="profile-threads">
- {% if posts %}
- <div>
- <nav class="toolbar">
- <h3 class="toolbar-left">
- {% if is_authenticated_user %}
- {% blocktrans trimmed count threads=paginator.count %}
- You have started {{ threads }} thread.
- {% plural %}
- You have started {{ threads }} threads.
- {% endblocktrans %}
- {% else %}
- {% blocktrans trimmed count threads=paginator.count with username=profile %}
- {{ username }} has started {{ threads }} thread.
- {% plural %}
- {{ username }} has started {{ threads }} threads.
- {% endblocktrans %}
- {% endif %}
- </h3>
- </nav>
- {% include "misago/profile/feed.html" %}
- </div>
- {% else %}
- <p class="lead">
- {% if is_authenticated_user %}
- {% trans "You have no started threads." %}
- {% else %}
- {% blocktrans trimmed with username=profile.username %}
- {{ username }} started no threads.
- {% endblocktrans %}
- {% endif %}
- </p>
- {% endif %}
- </div>
- {% endblock section %}
|